Evaluation Scenario 2
Question 1
Ingest SIDARTHE
This is the version directly from the SBML file. This will be replaced with a version from TA1/TA2 when available. This used our SBMLToolkit.jl library which reads SBML into ModelingToolkit and generates TeX'd versions of the equations so we could read the resulting model and confirm it is correct against the paper description.
using EasyModelAnalysis, SBML, SBMLToolkit, UnPack, Test
fn = "Giordano2020.xml"
myread(fn) = readSBML(fn, doc -> begin
set_level_and_version(3, 2)(doc)
convert_promotelocals_expandfuns(doc)
end)
m = myread(fn)
rn = ReactionSystem(m)
sys = convert(ODESystem, rn)
eqs = equations(sys)
defs_ = ModelingToolkit.defaults(sys)
defs = deepcopy(defs_)
evs = ModelingToolkit.get_continuous_events(sys)
@unpack Infected, Healed, Extinct, Diagnosed, Ailing, Recognized, Susceptible, Threatened = sys
@unpack alpha, epsilon, gamma, beta, delta, mu, nu, lambda, rho, kappa, xi, sigma, zeta, eta, theta, tau = sys
ps = [alpha, epsilon, gamma, beta, delta, mu, nu, lambda, rho, kappa, xi, sigma, zeta, eta]
@parameters t
D = Differential(t)
eqs2 = deepcopy(eqs)
append!(eqs2, D.(ps) .~ 0)
sys2 = ODESystem(eqs2, ModelingToolkit.get_iv(sys), states(sys), parameters(sys);
continuous_events = evs, defaults = defs, name = nameof(sys))
ssys = structural_simplify(sys2)\[ \begin{align} \frac{\mathrm{d} \mathrm{Infected}\left( t \right)}{\mathrm{d}t} =& \left( \frac{\mathrm{Infected}\left( t \right) \alpha\left( t \right)}{Italy} + \frac{\mathrm{Diagnosed}\left( t \right) \beta\left( t \right)}{Italy} + \frac{\mathrm{Ailing}\left( t \right) \Gamma\left( t \right)}{Italy} + \frac{\mathrm{Recognized}\left( t \right) \delta\left( t \right)}{Italy} \right) \mathrm{Susceptible}\left( t \right) - \mathrm{Infected}\left( t \right) \epsilon\left( t \right) - \mathrm{Infected}\left( t \right) \lambda\left( t \right) - \mathrm{Infected}\left( t \right) \zeta\left( t \right) \\ \frac{\mathrm{d} \mathrm{Healed}\left( t \right)}{\mathrm{d}t} =& \mathrm{Ailing}\left( t \right) \kappa\left( t \right) + \mathrm{Diagnosed}\left( t \right) \rho\left( t \right) + \mathrm{Infected}\left( t \right) \lambda\left( t \right) + \mathrm{Recognized}\left( t \right) \xi\left( t \right) + \mathrm{Threatened}\left( t \right) \sigma\left( t \right) \\ \frac{\mathrm{d} \mathrm{Extinct}\left( t \right)}{\mathrm{d}t} =& tau \mathrm{Threatened}\left( t \right) \\ \frac{\mathrm{d} \mathrm{Diagnosed}\left( t \right)}{\mathrm{d}t} =& \mathrm{Infected}\left( t \right) \epsilon\left( t \right) - \mathrm{Diagnosed}\left( t \right) \eta\left( t \right) - \mathrm{Diagnosed}\left( t \right) \rho\left( t \right) \\ \frac{\mathrm{d} \mathrm{Ailing}\left( t \right)}{\mathrm{d}t} =& \mathrm{Infected}\left( t \right) \zeta\left( t \right) - theta \mathrm{Ailing}\left( t \right) - \mathrm{Ailing}\left( t \right) \kappa\left( t \right) - \mathrm{Ailing}\left( t \right) \mu\left( t \right) \\ \frac{\mathrm{d} \mathrm{Recognized}\left( t \right)}{\mathrm{d}t} =& theta \mathrm{Ailing}\left( t \right) + \mathrm{Diagnosed}\left( t \right) \eta\left( t \right) - \mathrm{Recognized}\left( t \right) \nu\left( t \right) - \mathrm{Recognized}\left( t \right) \xi\left( t \right) \\ \frac{\mathrm{d} \mathrm{Susceptible}\left( t \right)}{\mathrm{d}t} =& \left( \frac{ - \mathrm{Infected}\left( t \right) \alpha\left( t \right)}{Italy} + \frac{ - \mathrm{Diagnosed}\left( t \right) \beta\left( t \right)}{Italy} + \frac{ - \mathrm{Ailing}\left( t \right) \Gamma\left( t \right)}{Italy} + \frac{ - \mathrm{Recognized}\left( t \right) \delta\left( t \right)}{Italy} \right) \mathrm{Susceptible}\left( t \right) \\ \frac{\mathrm{d} \mathrm{Threatened}\left( t \right)}{\mathrm{d}t} =& \mathrm{Ailing}\left( t \right) \mu\left( t \right) + \mathrm{Recognized}\left( t \right) \nu\left( t \right) - tau \mathrm{Threatened}\left( t \right) - \mathrm{Threatened}\left( t \right) \sigma\left( t \right) \\ \frac{\mathrm{d} \alpha\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \epsilon\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \Gamma\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \beta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \delta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \mu\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \nu\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \lambda\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \rho\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \kappa\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \xi\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \sigma\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \zeta\left( t \right)}{\mathrm{d}t} =& -0.0 \\ \frac{\mathrm{d} \eta\left( t \right)}{\mathrm{d}t} =& -0.0 \end{align} \]
Unit Tests
Unit Test 1
Set the initial values and parameters, as described in the Supplementary Methods section of the publication (pg. 9 of the pdf):
Initial Values: I = 200/60e6, D = 20/60e6, A = 1/60e6, R = 2/60e6, T = 0, H = 0, E = 0; S = 1 – I – D – A – R – T – H – E. Let total population = 60e6.
Parameters: α = 0.570, β = δ = 0.011, γ = 0.456, ε = 0.171, θ = 0.371, ζ = η = 0.125, μ = 0.017, ν = 0.027, τ = 0.01, λ = ρ = 0.034 and κ = ξ = σ = 0.017.
Simulate for 100 days, and determine the day and level of peak total infections (sum over all the infected states I, D, A, R, T). Expected output: The peak should occur around day 47, when ~60% of the population is infected.
The SBML model that was given had a few oddities. First, it made use of delay blocks. These are usually used to describe a delay differential equation. While our simulator does have the capability to solve delay differential equations and their inverse problems, it turns out that this was an issue with the SBML writing of the model as all of the delay values were zero. Thus as a simplification, we manually deleted the delay blocks to give a standard ODE representation (since a delay of 0 on all states is mathematically equivalent).
The paper and SBML model also described time-dependent parameters. These are parameters that would discretely change at pre-specified time points. However, we believe that the evaluators and/or paper must have used an SBML reading system that incorrectly handled these time-dependent parameters. This is because dropping the time-dependency and treating the parameters as constant gives the requested results of the unit test 1. A demonstration of this is as follows:
sysne = ODESystem(eqs2, ModelingToolkit.get_iv(sys), states(sys), parameters(sys);
defaults = defs, name = nameof(sys))
ssysne = structural_simplify(sysne)
probne = ODEProblem(ssysne, [], (0.0, 100.0))
ITALY_POPULATION = 60e6
idart = [Infected, Diagnosed, Ailing, Recognized, Threatened]
xmax, xmaxval = get_max_t(probne, sum(idart))
@test isapprox(xmax, 47; atol = 0.5)
@test isapprox(xmaxval, 0.6, atol = 0.01)Test PassedFull Analysis of the Effect of Events
TBD Paul
Unit Test 2
Now update the parameters to reflect various interventions that Italy implemented during the first wave, as described in detail on pg. 9. Simulate for 100 days, reproduce the trajectories in Fig. 2B, and determine the day and level of peak total infections (sum over all the infected states I, D, A, R, T). Expected output: Trajectories in Fig. 2B, peak occurs around day 50, with ~0.2% of the total population infected.
This unit test was a straightforward implementation of the scenario, requiring a named reparameterization. It makes use of the new ModelingToolkit feature designed for ASKEM, remake(prob, u0 = u0s, p = pars), which allows for a new ODE to be generated from the old ODE simply by mentioning which parameters need to be changed (all others are kept constant). The approximation tests on the bottom demonstrate that the results in Fig 2B are obtained.
ITALY_POPULATION = 60e6
u0s = [
Infected => 200 / ITALY_POPULATION,
Diagnosed => 20 / ITALY_POPULATION,
Ailing => 1 / ITALY_POPULATION,
Recognized => 2 / ITALY_POPULATION,
Threatened => 0,
Healed => 0,
Extinct => 0,
]
push!(u0s, Susceptible => 1 - sum(last.(u0s)))
# The resulting basic reproduction number is R0 = 2.38.
pars = [alpha => 0.570, beta => 0.011, delta => 0.011, gamma => 0.456, epsilon => 0.171,
theta => 0.371,
zeta => 0.125, eta => 0.125, mu => 0.017, nu => 0.027, tau => 0.01,
lambda => 0.034, rho => 0.034, kappa => 0.017, xi => 0.017, sigma => 0.017]
prob = ODEProblem(ssys, [], (0, 100))
prob_test1 = remake(prob, u0 = u0s, p = pars)
solt1 = solve(prob_test1, Tsit5(); saveat = 0:100)
og_states = states(sys)[1:8]
idart = [Infected, Diagnosed, Ailing, Recognized, Threatened]
plot(solt1; idxs = Infected)
plot(solt1; idxs = Diagnosed)
plot(solt1; idxs = idart)
@test solt1[Infected + Healed] == solt1[Infected] + solt1[Healed]
plot(solt1.t, solt1[sum(idart)] * ITALY_POPULATION; label = "IDART absolute")
plot(solt1.t, solt1[sum(idart)]; label = "IDART percent")
xmax, xmaxval = get_max_t(prob_test1, sum(idart))
@test isapprox(xmax, 47; atol = 4)
@test isapprox(xmaxval, 0.002; atol = 0.01)Test PassedSensitivity Analysis
The difference between 1.b.i and 1.b.ii are changes in some parameter values over time. Describe the difference in outcomes between b.i and b.ii. Perform a sensitivity analysis to understand the sensitivity of the model to parameter variations and determine which parameter(s) were most responsible for the change in outcomes.
This analysis was a straightforward application of the get_sensitivity function in EasyModelAnalysis. The only issue was the creation of the bounds for the parameters, which was not given by the metadata from TA1/TA2. Thus we made a modeling choice that the viable parameter set is 50% below and 100% above the starting parameter choice. Future iterations of the modeling platform should preserve parameter bound data which would make this a one line analysis.
A utility was added (https://github.com/SciML/EasyModelAnalysis.jl/pull/134) to make it so the sensitivity values did not need to be recreated for the plotting process. This was just a minor performance and "niceity" improvement. Polish.
pbounds = [param => [
0.5 * ModelingToolkit.defaults(sys)[param],
2 * ModelingToolkit.defaults(sys)[param],
] for param in parameters(sys2)]
sensres = get_sensitivity(prob, 100.0, Infected, pbounds; samples = 200)Dict{Symbol, Float64} with 135 entries:
:epsilon_modifier_ModelValue_18_second_order => 0.0
:theta_Italy_second_order => 0.042388
:Event_trigger_Fig4b_ModelValue_18_second_order => 0.0
:theta_ModelValue_19_second_order => -0.000578666
:Event_trigger_Fig3d_alpha_modifier_second_order => 0.0
:tau_ModelValue_18_second_order => -4.92201e-10
:ModelValue_21_ModelValue_20_second_order => -0.252065
:ModelValue_21_Event_trigger_Fig4b_second_order => -0.045835
:epsilon_modifier_Event_trigger_Fig3b_second_order => 0.0
:Event_trigger_Fig4d_ModelValue_17_second_order => 0.0
:tau_theta_second_order => -7.79925e-10
:tau_alpha_modifier_second_order => -4.92201e-10
:ModelValue_20_ModelValue_17_second_order => -0.316495
:ModelValue_16_Italy_second_order => 0.0
:Event_trigger_Fig4d_ModelValue_18_second_order => 0.0
:Event_trigger_Fig3d_Italy_second_order => 0.0
:Event_trigger_Fig4b_first_order => 0.0
:ModelValue_20_ModelValue_18_second_order => -0.316495
:ModelValue_20_Italy_second_order => -0.0619385
⋮ => ⋮create_sensitivity_plot(prob, 100.0, Infected, pbounds; samples = 200)
Mininmum Parameter Threshold
Now return to the situation in b.i (constant parameters that don’t change over time). Let’s say we want to increase testing, diagnostics, and contact tracing efforts (implemented by increasing the detection parameters ε and θ). Assume that θ >= 2* ε, because a symptomatic person is more likely to be tested. What minimum constant values do these parameters need to be over the course of a 100-day simulation, to ensure that the total infected population (sum over all the infected states I, D, A, R, T) never rises above 1/3 of the total population?
This scenario demonstrates the lazily defined observables functionality that persists throughout our simulation and analysis libraries. When one solves an equation with ModelingToolkit symbolic values, sol[x] gives the solution with respect to x by name. While that improves code legibility, sol[x+y] is also allowed, and will automatically generate the solution of x(t) + y(t) on demand. Since this functionality is directly handled by the solution representation, this means that all functions built on the solution have this functionality. Thus without having to make any other changes, we can change our minimization to the complex form (Infected + Diagnosed + Ailing + Recognized + Threatened) / sum(states(sys)) required by the scenario.
However, this scenario also required making a modeling choice. In order to perform this minimization we needed, we needed to define the comparative cost between the different intervention parameters, eta and theta. We have made the assumption that the cost of interventions on these two parameters are the same, and have made requests to TA1/TA2 about the interpretation of these parameters for further information.
threshold_observable = (Infected + Diagnosed + Ailing + Recognized + Threatened) /
sum(states(sys))
cost = -(eta + theta)
EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob, threshold_observable,
0.33,
cost, [eta, theta],
[0.0, 0.0],
3 .* [
ModelingToolkit.defaults(sys)[eta],
ModelingToolkit.defaults(sys)[theta],
];
maxtime = 60)(Dict{Num, Float64}(theta => 1.1128008861606955, eta(t) => 0.3748188517182726), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], nothing, nothing, [0.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c2a3730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c2a3750, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c2a3770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c2a3790, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 0.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c2a3730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c2a3750, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c2a3770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c2a3790, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [0.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.03879439e-315 6.935158300992e-310 … 6.9351735971371e-310 6.9351735522799e-310; 3.41573288e-315 6.935298241831e-310 … 6.9352191278737e-310 6.93521912743102e-310; … ; 0.0 0.0 … 6.93515822718096e-310 6.93517353992906e-310; 0.0 0.0 … 6.93521909878154e-310 6.93521909479977e-310], [6.93527304951214e-310 6.9352730495643e-310 … 6.93527305217535e-310 NaN; 6.9352730495145e-310 6.9352730495667e-310 … 6.9352730521777e-310 0.0; … ; 6.93527304955957e-310 6.93527304961174e-310 … 0.0 0.0; 6.93527304956194e-310 6.9352730496141e-310 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c2a3730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c2a3750, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c2a3770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c2a3790, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c2a3730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c2a3750, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c2a3770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c2a3790, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.93527304951214e-310 6.9352730495643e-310 … 6.93527305217535e-310 NaN; 6.9352730495145e-310 6.9352730495667e-310 … 6.9352730521777e-310 0.0; … ; 6.93527304955957e-310 6.93527304961174e-310 … 0.0 0.0; 6.93527304956194e-310 6.9352730496141e-310 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 0
Number of rejected steps: 0, [1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.823481601922883e-6, 7.553052596545722e-8, 4.1001012310048096e-12, 6.206422662104666e-7, 1.8920374531961918e-7, 1.2873936299652615e-7, 0.9999951770498237, 2.0152366359180594e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [5.459127653400097e-6, 3.3751184764628025e-7, 1.3541631486503986e-10, 1.4272526515436507e-6, 4.452911339797542e-7, 7.397293695867195e-7, 0.9999915849622333, 2.2656357102733724e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [9.0214159894546e-6, 9.551211127945056e-7, 1.1618882078090309e-9, 2.966025544151613e-6, 7.824078486116636e-7, 2.2922361213939545e-6, 0.9999838914401435, 1.0685801465324056e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0124778705565025e-5, 1.1538685929890536e-6, 1.6552987480051434e-9, 3.4209862770145847e-6, 8.811271075025246e-7, 2.7800576486427324e-6, 0.999981515399703, 1.3879332926477228e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0124778705565025e-5, 1.1538685929890536e-6, 1.6552987480051434e-9, 3.4209862770145847e-6, 8.811271075025246e-7, 2.7800576486427324e-6, 0.999981515399703, 1.3879332926477228e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.3862784214659201e-5, 2.8722888012708264e-6, 9.058884584761045e-9, 6.568927374581706e-6, 1.318622946855898e-6, 7.055203689986991e-6, 0.999967837446921, 4.923338298682356e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.865245872845581e-5, 5.303494098088111e-6, 2.7400403724630744e-8, 9.985552948809297e-6, 1.8196155069152913e-6, 1.2594970705371673e-5, 0.9999505124946795, 1.1206795918996812e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7723138527577144e-5, 1.020401047499858e-5, 8.247436595223842e-8, 1.584341984905935e-5, 2.6893968302130235e-6, 2.2953195080183346e-5, 0.9999179674806552, 2.553550879565046e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7723138527577144e-5, 1.020401047499858e-5, 8.247436595223842e-8, 1.584341984905935e-5, 2.6893968302130235e-6, 2.2953195080183346e-5, 0.9999179674806552, 2.553550879565046e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125] … [6.602051091780369e-5, 0.0008870747260935925, 1.9417856444496276e-5, 0.00041384114547936664, 2.247888305845252e-6, 0.0003170764619694, 0.9981927315493497, 0.00010160652810249173, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.864163548502177e-5, 0.0009544946348600858, 2.289835151356303e-5, 0.0003949656106962685, 2.479420878666243e-6, 0.00031838591456265295, 0.998137764908555, 0.00011038619011150747, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.316999899093988e-5, 0.001016533348887992, 2.649301079154187e-5, 0.00037562395869478345, 2.543756960310658e-6, 0.0003177373096564347, 0.9980896243365812, 0.00011829094609949803, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.895545603648408e-5, 0.0010743857931762326, 3.0201320836041095e-5, 0.00035660870602470464, 2.3775273248760876e-6, 0.0003156617092237743, 0.9980464059450829, 0.00012542020895777453, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.555063258544158e-5, 0.00112946179650791, 3.4065340966859964e-5, 0.000338099521974136, 2.13709625978828e-6, 0.0003123018521511584, 0.9980064853387849, 0.00013191508743254647, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.268451711307959e-5, 0.001182720866639552, 3.812362109246567e-5, 0.00032014046507247457, 1.9412725120113093e-6, 0.00030772343262840026, 0.9979688228579987, 0.00013785963360602607, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.020085189992236e-5, 0.0012345792215125713, 4.238999711479235e-5, 0.0003028116248126842, 1.8190799907171755e-6, 0.0003020485132411195, 0.9979328951328359, 0.00014327224525503168, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.614660905239925e-5, 0.0013337739034813328, 5.144656422664855e-5, 0.00027058971453985963, 6.156854490126829e-7, 0.0002893457069484265, 0.9978657067427771, 0.00015239174018794998, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.18363095985545e-5, 0.00145195233272927, 6.385977016795895e-5, 0.00023445583121716195, 7.460345184812182e-7, 0.0002684078648481515, 0.997788011356809, 0.00016074716677422923, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [0.0, 0.5372211282057485, 1.8303205848483937, 3.596731618045692, 3.9999999999999996, 3.9999999999999996, 6.5359021187155175, 8.890655479269245, 11.999999999999998, 11.999999999999998 … 56.45281832978009, 59.73534137852707, 62.87824418366704, 65.92053630888242, 68.92273568146862, 71.93045897263562, 74.96466440954858, 81.08673782398581, 89.00680642424064, 100.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 3.975533182237751e-7, 5.8746681321624866e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.447011739979647e-7, 1.3009649386196195e-7, 1.023495784327969e-12, 5.218941911700416e-7, 3.6689504553997515e-7, 1.0237682167136716e-7, -1.967867062922352e-6, 1.9023131852571513e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.778104472688828e-7, 1.35093163099236e-7, 3.3745751032801063e-12, 5.278194591590906e-7, 3.4236637755326964e-7, 1.4097747252670332e-7, -2.0268287945950414e-6, 2.758500412756098e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [9.959841973271737e-7, 1.531883862395199e-7, 1.8072273564080273e-11, 5.50185948468967e-7, 2.5963437006289365e-7, 2.7443719994473795e-7, -2.2393778261770828e-6, 5.929651860226549e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.015263794924807e-6, 1.5584186588645774e-7, 2.1919707660144816e-11, 5.533464559168687e-7, 2.420800271064281e-7, 2.9939532802463753e-7, -2.2723108239542947e-6, 6.361432387435329e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0200003695744505e-6, 1.5650942964890343e-7, 2.288368278445024e-11, 5.541587307962962e-7, 2.3799634697448374e-7, 3.0534028421252256e-7, -2.2805005899236834e-6, 6.472545034242264e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.012144723319832e-6, 1.5653950338071896e-7, 2.0152366359180594e-11, 5.551332336013488e-7, 2.6095617744289847e-7, 2.8246184676105596e-7, -2.2738936519543833e-6, 6.638015082169944e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.012144723319832e-6, 1.5653950338071896e-7, 2.0152366359180594e-11, 5.551332336013488e-7, 2.6095617744289847e-7, 2.8246184676105596e-7, -2.2738936519543833e-6, 6.638015082169944e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0894068701344125e-6, 1.6958013068938604e-7, 3.397198440964341e-11, 5.727898610770179e-7, 2.2499221565057948e-7, 3.5477746579552103e-7, -2.4206925442256293e-6, 9.112028894302891e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.1704272256254985e-6, 1.847120845059125e-7, 5.895329883471288e-11, 5.955083723825491e-7, 2.099928338042823e-7, 4.1155464346069186e-7, -2.584469808020438e-6, 1.2215694942668848e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5119860316859187e-6, 2.435984477655043e-7, 2.0858718408581449e-10, 6.847405237969966e-7, 8.262077831883029e-8, 7.003555755032529e-7, -3.2474231698970372e-6, 2.3913225642448996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5905195167475747e-6, 2.5303914350662667e-7, 2.4836335840132445e-10, 6.969012847259948e-7, -4.967249083967475e-9, 8.136589048333653e-7, -3.3747323264096834e-6, 2.5332362321688162e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6099119938075902e-6, 2.5541003607251296e-7, 2.5829710876309215e-10, 7.000082138345695e-7, -2.5995139342841962e-8, 8.411384200085704e-7, -3.406428608720425e-6, 2.5696787231260393e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5370521017627496e-6, 2.54667436999464e-7, 2.2656357102733725e-10, 7.065776571359763e-7, 1.717306896275291e-7, 6.413788576733121e-7, -3.3385642273847817e-6, 2.693092061472344e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5370521017627496e-6, 2.54667436999464e-7, 2.2656357102733725e-10, 7.065776571359763e-7, 1.717306896275291e-7, 6.413788576733121e-7, -3.3385642273847817e-6, 2.693092061472344e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6684438461522305e-6, 2.804231584280961e-7, 3.0315300227323026e-10, 7.493758533627562e-7, 1.7036293550840157e-7, 7.128191964681612e-7, -3.614207417258212e-6, 3.247927433629293e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8229764518304226e-6, 3.1125019247801933e-7, 4.1500035007872735e-10, 8.027850732188608e-7, 1.7961500697997207e-7, 7.86883729787286e-7, -3.9431658919960005e-6, 3.9240437351360896e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.487139090719377e-6, 4.3949371261253155e-7, 9.799574396499113e-10, 1.0287508631131583e-6, 1.6769826820240992e-7, 1.1439876913801064e-6, -5.335016471910266e-6, 6.69668884430335e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.622184870606275e-6, 4.6261060152423604e-7, 1.1056951376542635e-9, 1.068678041661964e-6, 1.2333837527191798e-7, 1.250432575844371e-6, -5.5999757977874475e-6, 7.162563774102962e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6559386860588487e-6, 4.683855374306095e-7, 1.1371349848738814e-9, 1.0786716477302202e-6, 1.1223702356075567e-7, 1.277033148523157e-6, -5.66619502720743e-6, 7.27918489189646e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6282637647774934e-6, 4.7131051669870993e-7, 1.1155257839650508e-9, 1.088647664188981e-6, 2.3419119146462368e-7, 1.1626403524009908e-6, -5.660602128077139e-6, 7.443311276237481e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.680237335906125e-6, 4.816310168380622e-7, 1.1668069119995238e-9, 1.1075232962013482e-6, 2.383240873305648e-7, 1.1861425333433583e-6, -5.771732798327155e-6, 7.670772179569721e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.866259713377094e-6, 5.185503921399008e-7, 1.3538931684886767e-9, 1.1752715805524449e-6, 2.532328878408113e-7, 1.2700418381061657e-6, -6.1695525285452325e-6, 8.484222336032708e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8935182203199294e-6, 5.239538313901513e-7, 1.381939941884106e-9, 1.185222309665767e-6, 2.553895971507783e-7, 1.282339377633286e-6, -6.227836761988518e-6, 8.603148588672075e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.900351104647759e-6, 5.253083714986208e-7, 1.3889862771805745e-9, 1.1877180611673354e-6, 2.5593320351536345e-7, 1.2854188335023581e-6, -6.242448209774894e-6, 8.63296491662768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.899536482250212e-6, 5.251594715505344e-7, 1.3878489633338756e-9, 1.1874430995632117e-6, 2.5603683896469226e-7, 1.2849139209102907e-6, -6.240777916646745e-6, 8.630025444446996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6282637647774934e-6, 4.7131051669870993e-7, 1.1155257839650508e-9, 1.088647664188981e-6, 2.3419119146462368e-7, 1.1626403524009908e-6, -5.660602128077139e-6, 7.443311276237481e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.680237335906125e-6, 4.816310168380622e-7, 1.1668069119995238e-9, 1.1075232962013482e-6, 2.383240873305648e-7, 1.1861425333433583e-6, -5.771732798327155e-6, 7.670772179569721e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.866259713377094e-6, 5.185503921399008e-7, 1.3538931684886767e-9, 1.1752715805524449e-6, 2.532328878408113e-7, 1.2700418381061657e-6, -6.1695525285452325e-6, 8.484222336032708e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8935182203199294e-6, 5.239538313901513e-7, 1.381939941884106e-9, 1.185222309665767e-6, 2.553895971507783e-7, 1.282339377633286e-6, -6.227836761988518e-6, 8.603148588672075e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.900351104647759e-6, 5.253083714986208e-7, 1.3889862771805745e-9, 1.1877180611673354e-6, 2.5593320351536345e-7, 1.2854188335023581e-6, -6.242448209774894e-6, 8.63296491662768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.899536482250212e-6, 5.251594715505344e-7, 1.3878489633338756e-9, 1.1874430995632117e-6, 2.5603683896469226e-7, 1.2849139209102907e-6, -6.240777916646745e-6, 8.630025444446996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.2178625433454893e-6, 5.251556368596772e-7, 1.3879332926477228e-9, 1.1874003406063003e-6, 2.551199904915224e-7, 1.2858197741355627e-6, -4.559039516181947e-6, 8.629329745074784e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.2990355543894319e-6, 5.698386022243456e-7, 1.7402517755441655e-9, 1.1953445925215703e-6, 1.978223443222642e-7, 1.4392297372118996e-6, -4.804298167463034e-6, 1.0128708501797796e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3759703049585303e-6, 6.200938793646101e-7, 2.2310708899602758e-9, 1.2142698057860263e-6, 2.032791395223065e-7, 1.5382619206453477e-6, -5.073203401189533e-6, 1.1909728002275158e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8147589964904707e-6, 8.090789956096268e-7, 4.5682692893575e-9, 1.280153823897423e-6, -4.121963135709768e-7, 2.5406108006911214e-6, -6.218375609047127e-6, 1.814010366401039e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0044028082223087e-6, 8.37340487343598e-7, 5.077567322399395e-9, 1.2720519499257186e-6, -1.0449970339954065e-6, 3.231442786702747e-6, -6.4918411325756495e-6, 1.865225670542849e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0541525149233287e-6, 8.443572777600004e-7, 5.2064216547666556e-9, 1.2698094293092866e-6, -1.213617206520028e-6, 3.4143503102569502e-6, -6.5619992757256405e-6, 1.8774052834133606e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.7286384960867105e-6, 8.454029219682801e-7, 4.923338298682356e-9, 1.3260766481482323e-6, 2.2065006286622856e-7, 1.9780517432363566e-6, -6.3033572869242476e-6, 1.9961407631975665e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.7286384960867105e-6, 8.454029219682801e-7, 4.923338298682356e-9, 1.3260766481482323e-6, 2.2065006286622856e-7, 1.9780517432363566e-6, -6.3033572869242476e-6, 1.9961407631975665e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8198861551917693e-6, 9.002350052860318e-7, 5.680105785097074e-9, 1.3582070465782744e-6, 2.0663725063451088e-7, 2.100985521311831e-6, -6.610871530594989e-6, 2.192404458074751e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9181383414110147e-6, 9.618101090708282e-7, 6.6154186228936655e-9, 1.3996257596391502e-6, 2.1389448071648216e-7, 2.2143184143344635e-6, -6.955894142811724e-6, 2.4149161901689145e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3369734689025e-6, 1.195637277539827e-6, 1.0516395484676797e-8, 1.5612688992374057e-6, 5.377060085620435e-8, 2.8300572254937808e-6, -8.31208192183102e-6, 3.238580543166239e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.439516058947137e-6, 1.2327048572798377e-6, 1.122093253249273e-8, 1.5823422203331352e-6, -1.2820329813261709e-7, 3.0846053407582723e-6, -8.557638665584083e-6, 3.354525538658255e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.465716313505995e-6, 1.2419801827321923e-6, 1.1398500531876625e-8, 1.5876379825305319e-6, -1.7601593670312098e-7, 3.1505166253610853e-6, -8.619582874426755e-6, 3.383492064681956e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5189214862659933e-6, 1.3333962559732808e-6, 1.2912552197025214e-8, 1.6766376342029373e-6, 2.521307166099311e-7, 2.8956181303612453e-6, -9.064583372292236e-6, 3.749665966818225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.698410781266678e-6, 1.4440254580522008e-6, 1.502831549276214e-8, 1.7691581742819923e-6, 2.712663019499968e-7, 3.08796286304191e-6, -9.700251936373809e-6, 4.144000422882685e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.443880597842922e-6, 1.883757201812103e-6, 2.3965326633040017e-8, 2.1447668846180473e-6, 2.2330312980492373e-7, 3.977473541315415e-6, -1.2264965876474723e-5, 5.678191944482715e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.596050349381799e-6, 1.9588187545502646e-6, 2.5600699236276005e-8, 2.2055369878331326e-6, 1.0776377391022095e-7, 4.23820834767321e-6, -1.2724433569879047e-5, 5.924546572941443e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634977542279562e-6, 1.977585824723179e-6, 2.6011735329960162e-8, 2.220734642994125e-6, 7.513827477301473e-8, 4.3070573001656105e-6, -1.2840105979786457e-5, 5.986006595210063e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540852621613213e-6, 1.9605133936636697e-6, 2.5536761031710507e-8, 2.2209234839958036e-6, 3.6423091955976233e-7, 3.980017080662269e-6, -1.268844152240087e-5, 5.963672618744396e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5189214862659933e-6, 1.3333962559732808e-6, 1.2912552197025214e-8, 1.6766376342029373e-6, 2.521307166099311e-7, 2.8956181303612453e-6, -9.064583372292236e-6, 3.749665966818225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.698410781266678e-6, 1.4440254580522008e-6, 1.502831549276214e-8, 1.7691581742819923e-6, 2.712663019499968e-7, 3.08796286304191e-6, -9.700251936373809e-6, 4.144000422882685e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.443880597842922e-6, 1.883757201812103e-6, 2.3965326633040017e-8, 2.1447668846180473e-6, 2.2330312980492373e-7, 3.977473541315415e-6, -1.2264965876474723e-5, 5.678191944482715e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.596050349381799e-6, 1.9588187545502646e-6, 2.5600699236276005e-8, 2.2055369878331326e-6, 1.0776377391022095e-7, 4.23820834767321e-6, -1.2724433569879047e-5, 5.924546572941443e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634977542279562e-6, 1.977585824723179e-6, 2.6011735329960162e-8, 2.220734642994125e-6, 7.513827477301473e-8, 4.3070573001656105e-6, -1.2840105979786457e-5, 5.986006595210063e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540852621613213e-6, 1.9605133936636697e-6, 2.5536761031710507e-8, 2.2209234839958036e-6, 3.6423091955976233e-7, 3.980017080662269e-6, -1.268844152240087e-5, 5.963672618744396e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]] … [[-3.381267917004813e-6, 2.19099402550345e-5, 9.213957618043863e-7, -4.1486285271433495e-6, -5.529764279165106e-7, 2.1897675732611493e-6, -1.980828219161283e-5, 2.870051473577471e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.243152647820438e-6, 2.175173415427011e-5, 9.369437443109517e-7, -4.4138416351769345e-6, -2.5702599655789455e-7, 1.7587060064906377e-6, -1.9387716616679387e-5, 2.8543529911629535e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.082993768741044e-6, 2.159187232447479e-5, 9.527973752901229e-7, -4.642637585303854e-6, -3.291007672628115e-7, 1.6955634798555046e-6, -1.9019396173648163e-5, 2.8338951153354524e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.078719696808862e-6, 2.1084369675774164e-5, 1.0063620359523486e-6, -5.275720016932264e-6, 4.6126726285705395e-6, -3.7186343827755856e-6, -1.7421697057678778e-5, 2.791366813898435e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.547358867541326e-6, 2.1044346444549715e-5, 1.0133700481110474e-6, -5.296220936103832e-6, 1.0037413944359978e-5, -9.224482401979713e-6, -1.684184223601382e-5, 2.8147740046179515e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.683275148317783e-6, 2.103576735555822e-5, 1.0151077424167798e-6, -5.296157018821861e-6, 1.1573715854647057e-5, -1.0781879240909123e-5, -1.668499277756906e-5, 2.821713232995776e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4681022063937177e-6, 2.0961016069541454e-5, 1.0160652810249172e-6, -5.418749363010762e-6, -9.138801983534357e-7, 1.7498045667900298e-6, -1.766815362353641e-5, 2.7419994739379266e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.4681022063937177e-6, 2.0961016069541454e-5, 1.0160652810249172e-6, -5.418749363010762e-6, -9.138801983534357e-7, 1.7498045667900298e-6, -1.766815362353641e-5, 2.7419994739379266e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4052617365544616e-6, 2.082271932369202e-5, 1.030556370146211e-6, -5.5507529152916816e-6, -3.955130266265395e-7, 1.1083921683737438e-6, -1.7333164908547472e-5, 2.72302472480818e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2886998300847916e-6, 2.06798374915768e-5, 1.0452885387925627e-6, -5.6664742422718885e-6, -5.105297792209028e-7, 1.103376687561572e-6, -1.7060649104324204e-5, 2.6978502379708546e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.775152445726276e-6, 2.0252061619421115e-5, 1.0947104779067478e-6, -5.869606830035715e-6, 7.770848186574302e-6, -7.6145099243862535e-6, -1.552063686812759e-5, 2.662285784373672e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6272235791424225e-6, 2.0244659893535775e-5, 1.1009714300128195e-6, -5.7664815279030805e-6, 1.6786337498909623e-5, -1.6721904193990146e-5, -1.472295545979051e-5, 2.7065959383679417e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.869013191533542e-6, 2.024486039904801e-5, 1.1025154129682493e-6, -5.734354087461667e-6, 1.93227467042501e-5, -1.9282489694661675e-5, -1.4503677950962142e-5, 2.7194124083526675e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8200768668176683e-6, 2.0111811662668572e-5, 1.1038619011150746e-6, -6.045125384327728e-6, -1.3624846484222356e-6, 1.4897350086589851e-6, -1.6065621956113974e-5, 2.587900283238974e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8200768668176683e-6, 2.0111811662668572e-5, 1.1038619011150746e-6, -6.045125384327728e-6, -1.3624846484222356e-6, 1.4897350086589851e-6, -1.6065621956113974e-5, 2.587900283238974e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.818633264060738e-6, 1.999133908097953e-5, 1.1169568668010538e-6, -6.0916703344860154e-6, -5.990097391757718e-7, 6.196842180223306e-7, -1.5786169014954133e-5, 2.5675021868737412e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7337222299660933e-6, 1.986380284919371e-5, 1.1302434343606001e-6, -6.137147928539317e-6, -7.30125427148256e-7, 6.492933406857526e-7, -1.5581924253633082e-5, 2.5395802150466835e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.6191584262800105e-6, 1.9507140489108534e-5, 1.1745157543028589e-6, -6.059385220993592e-6, 1.045197735879122e-5, -1.0920733105635568e-5, -1.4048614317247774e-5, 2.5142574679543306e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.783973620063198e-6, 1.9527142826596193e-5, 1.1799355447889564e-6, -5.865762795011692e-6, 2.242501554510557e-5, -2.2991636151808173e-5, -1.3066935324595195e-5, 2.5762139749875397e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.109284353924598e-6, 1.9534518100760505e-5, 1.1812654473951275e-6, -5.8104902628467815e-6, 2.5755791671557787e-5, -2.6348293371431087e-5, -1.2797305193658028e-5, 2.593797962147075e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3860868531261349e-6, 1.9354609886500746e-5, 1.1829094609949803e-6, -6.26907834307728e-6, -1.5726702197263384e-6, 1.1004881290055103e-6, -1.483076283911053e-5, 2.4205907785390454e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.3860868531261349e-6, 1.9354609886500746e-5, 1.1829094609949803e-6, -6.26907834307728e-6, -1.5726702197263384e-6, 1.1004881290055103e-6, -1.483076283911053e-5, 2.4205907785390454e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4179518144121359e-6, 1.924611412499184e-5, 1.1947657332598888e-6, -6.266682611272057e-6, -7.108750279647123e-7, 1.4765632115196929e-7, -1.4591827930518746e-5, 2.3988012047639546e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3559379606637093e-6, 1.912961536050941e-5, 1.206767821777101e-6, -6.270826977967682e-6, -8.265480515644447e-7, 1.7812260912958693e-7, -1.4430421779428157e-5, 2.369228978207894e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.375003867328165e-6, 1.8813895840204587e-5, 1.2465860354125265e-6, -6.049232298053267e-6, 1.0994986330938624e-5, -1.1979572863603822e-5, -1.2994380535444465e-5, 2.342721357873982e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.602602083885584e-6, 1.8842694754664864e-5, 1.251375092072909e-6, -5.825113830076451e-6, 2.349110791689658e-5, -2.45690577511482e-5, -1.199573730927293e-5, 2.407333210748816e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.942166427981974e-6, 1.885215247039419e-5, 1.2525476015821717e-6, -5.762738570039352e-6, 2.6939276502214277e-5, -2.804191409735615e-5, -1.1722662745786174e-5, 2.4255052669730115e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1039099038780832e-6, 1.8663597423963575e-5, 1.2542020895777453e-6, -6.256300563814893e-6, -1.4883988781778066e-6, 5.12772341778895e-7, -1.3827504187249562e-5, 2.245541677800132e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.1039099038780832e-6, 1.8663597423963575e-5, 1.2542020895777453e-6, -6.256300563814893e-6, -1.4883988781778066e-6, 5.12772341778895e-7, -1.3827504187249562e-5, 2.245541677800132e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1453953318927162e-6, 1.8561853359402396e-5, 1.2650560073218399e-6, -6.226936055714635e-6, -6.810191696064966e-7, -3.720779721666287e-7, -1.3623277049264835e-5, 2.2217962119210767e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.099161317876711e-6, 1.845239868909109e-5, 1.2760078437178048e-6, -6.206347153789183e-6, -7.772826614680914e-7, -3.4757302889215255e-7, -1.3488971360816359e-5, 2.1909289900336026e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.059438798945316e-6, 1.8152928368719673e-5, 1.3122573871026803e-6, -5.925513432994125e-6, 1.0007018429570025e-5, -1.1418091572347403e-5, -1.2222783244083697e-5, 2.153622862978163e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1777738554627934e-6, 1.817728769242105e-5, 1.316612452554666e-6, -5.710299180215085e-6, 2.1346304862018465e-5, -2.283971946189184e-5, -1.1322837708552495e-5, 2.210425199128037e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.485943157464516e-6, 1.8185350671029787e-5, 1.3176783059717552e-6, -5.65104204063682e-6, 2.4465140629729538e-5, -2.5980307985662613e-5, -1.1077275282299705e-5, 2.2263988593325788e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.117032524363901e-7, 1.8013970888862445e-5, 1.3191508743254647e-6, -6.1043519717478055e-6, -1.2992354923411383e-6, -9.991416423403755e-8, -1.2981239686123291e-5, 2.0633228036947534e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.117032524363901e-7, 1.8013970888862445e-5, 1.3191508743254647e-6, -6.1043519717478055e-6, -1.2992354923411383e-6, -9.991416423403755e-8, -1.2981239686123291e-5, 2.0633228036947534e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.532773336499276e-7, 1.7915973057837926e-5, 1.3291423798521933e-6, -6.0596295767796795e-6, -5.925420202032646e-7, -8.722351129874949e-7, -1.2805012274801225e-5, 2.0375808807314696e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.174755849257584e-7, 1.781089422355335e-5, 1.3391844360889053e-6, -6.023938898098468e-6, -6.784291837929716e-7, -8.466248783542464e-7, -1.2689184279150145e-5, 2.005574164679333e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7773351658822169e-6, 1.7517121143428624e-5, 1.3723508321925138e-6, -5.719440751135529e-6, 8.797496761705273e-6, -1.0564250929890347e-5, -1.1582325733793766e-5, 1.9563838433754477e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.763094666095991e-6, 1.753437270522977e-5, 1.376345200028298e-6, -5.521804712409807e-6, 1.876887913425996e-5, -2.0606783249823932e-5, -1.0792038036331286e-5, 2.00412362514299e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.034772811008178e-6, 1.7540427623977655e-5, 1.3773223402514458e-6, -5.4676447304303124e-6, 2.151270359974714e-5, -2.3369417624671044e-5, -1.0576247399339742e-5, 2.017629001473042e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.697846909701057e-7, 1.738946110936435e-5, 1.3785963360602607e-6, -5.869417505645438e-6, -1.1474924741549111e-6, -6.065587435365608e-7, -1.2248993028519169e-5, 1.8741889974015734e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-7.697846909701057e-7, 1.738946110936435e-5, 1.3785963360602607e-6, -5.869417505645438e-6, -1.1474924741549111e-6, -6.065587435365608e-7, -1.2248993028519169e-5, 1.8741889974015734e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109190461022805e-7, 1.7294050665579466e-5, 1.3877518819178673e-6, -5.81560022016712e-6, -5.174083230756376e-7, -1.2916589080930418e-6, -1.2093164866637963e-5, 1.8469488165787083e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820889474369455e-7, 1.7192025768419744e-5, 1.3969144790039872e-6, -5.770951033571307e-6, -6.004825974550449e-7, -1.2585367889346076e-6, -1.1990968471609773e-5, 1.8140875915839476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5761461247502398e-6, 1.690262245259653e-5, 1.4270775543305573e-6, -5.454321679481676e-6, 8.000657817727649e-6, -1.006281055028852e-5, -1.0993899283212997e-5, 1.7568198130786964e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4761070852016663e-6, 1.6915382574334303e-5, 1.4306984501187316e-6, -5.26845482640581e-6, 1.7084015209677465e-5, -1.9208756499455086e-5, -1.0275434839892815e-5, 1.798657016824875e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.72460641361702e-6, 1.6920194346264993e-5, 1.4315828520274998e-6, -5.21761502106423e-6, 1.9588837940026163e-5, -2.173017756970409e-5, -1.0078800517803666e-5, 1.8105843838703482e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589152347374774e-7, 1.6782374965434526e-5, 1.4327224525503169e-6, -5.586352736586317e-6, -1.0701867679092845e-6, -9.77133517454815e-7, -1.1602344594738842e-5, 1.679835433441896e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-6.7769002484549e-7, 1.6441430224501638e-5, 1.460861350644427e-6, -5.3941344440122106e-6, -3.613643561224527e-7, -1.8254370726801634e-6, -1.1212941329696461e-5, 1.56927565221077e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-6.622336213679308e-7, 1.6202791971562744e-5, 1.4793300404563526e-6, -5.263234870205564e-6, -1.9656649965461284e-7, -2.0749189747932267e-6, -1.0974776927755446e-5, 1.489608881757684e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-5.706727345775745e-7, 1.5209192868774685e-5, 1.5506750681144632e-6, -4.719335010352031e-6, 4.612701982616739e-8, -2.6191857240637563e-6, -1.0050281230988655e-5, 1.1534797432673564e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-5.44225015135105e-7, 1.4921389600607098e-5, 1.5673104069971063e-6, -4.562319488184117e-6, 1.6458073287943657e-8, -2.64364403353796e-6, -9.809938510592976e-6, 1.0549689665579947e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-4.539421669125747e-7, 1.3698592141660788e-5, 1.6281209457467823e-6, -3.9091654764894625e-6, -1.9624623504724772e-8, -2.77495729654049e-6, -8.810338939086379e-6, 6.413154151270947e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.36102069030113e-7, 1.3337042480245753e-5, 1.6389442418778632e-6, -3.729850996554483e-6, -1.3939040420181559e-8, -2.7896009133848598e-6, -8.530475401481314e-6, 5.239816987472587e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a03d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a03f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0410, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0430, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 100.0), [1.0, 1.0, 0.01, 1.1128008861606955, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(13, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), true, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a03d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a03f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0410, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0430, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.823481601922883e-6, 7.553052596545722e-8, 4.1001012310048096e-12, 6.206422662104666e-7, 1.8920374531961918e-7, 1.2873936299652615e-7, 0.9999951770498237, 2.0152366359180594e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [5.459127653400097e-6, 3.3751184764628025e-7, 1.3541631486503986e-10, 1.4272526515436507e-6, 4.452911339797542e-7, 7.397293695867195e-7, 0.9999915849622333, 2.2656357102733724e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [9.0214159894546e-6, 9.551211127945056e-7, 1.1618882078090309e-9, 2.966025544151613e-6, 7.824078486116636e-7, 2.2922361213939545e-6, 0.9999838914401435, 1.0685801465324056e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0124778705565025e-5, 1.1538685929890536e-6, 1.6552987480051434e-9, 3.4209862770145847e-6, 8.811271075025246e-7, 2.7800576486427324e-6, 0.999981515399703, 1.3879332926477228e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0124778705565025e-5, 1.1538685929890536e-6, 1.6552987480051434e-9, 3.4209862770145847e-6, 8.811271075025246e-7, 2.7800576486427324e-6, 0.999981515399703, 1.3879332926477228e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.3862784214659201e-5, 2.8722888012708264e-6, 9.058884584761045e-9, 6.568927374581706e-6, 1.318622946855898e-6, 7.055203689986991e-6, 0.999967837446921, 4.923338298682356e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.865245872845581e-5, 5.303494098088111e-6, 2.7400403724630744e-8, 9.985552948809297e-6, 1.8196155069152913e-6, 1.2594970705371673e-5, 0.9999505124946795, 1.1206795918996812e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7723138527577144e-5, 1.020401047499858e-5, 8.247436595223842e-8, 1.584341984905935e-5, 2.6893968302130235e-6, 2.2953195080183346e-5, 0.9999179674806552, 2.553550879565046e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [2.7723138527577144e-5, 1.020401047499858e-5, 8.247436595223842e-8, 1.584341984905935e-5, 2.6893968302130235e-6, 2.2953195080183346e-5, 0.9999179674806552, 2.553550879565046e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125] … [6.602051091780369e-5, 0.0008870747260935925, 1.9417856444496276e-5, 0.00041384114547936664, 2.247888305845252e-6, 0.0003170764619694, 0.9981927315493497, 0.00010160652810249173, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.864163548502177e-5, 0.0009544946348600858, 2.289835151356303e-5, 0.0003949656106962685, 2.479420878666243e-6, 0.00031838591456265295, 0.998137764908555, 0.00011038619011150747, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [5.316999899093988e-5, 0.001016533348887992, 2.649301079154187e-5, 0.00037562395869478345, 2.543756960310658e-6, 0.0003177373096564347, 0.9980896243365812, 0.00011829094609949803, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.895545603648408e-5, 0.0010743857931762326, 3.0201320836041095e-5, 0.00035660870602470464, 2.3775273248760876e-6, 0.0003156617092237743, 0.9980464059450829, 0.00012542020895777453, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.555063258544158e-5, 0.00112946179650791, 3.4065340966859964e-5, 0.000338099521974136, 2.13709625978828e-6, 0.0003123018521511584, 0.9980064853387849, 0.00013191508743254647, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.268451711307959e-5, 0.001182720866639552, 3.812362109246567e-5, 0.00032014046507247457, 1.9412725120113093e-6, 0.00030772343262840026, 0.9979688228579987, 0.00013785963360602607, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [4.020085189992236e-5, 0.0012345792215125713, 4.238999711479235e-5, 0.0003028116248126842, 1.8190799907171755e-6, 0.0003020485132411195, 0.9979328951328359, 0.00014327224525503168, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.614660905239925e-5, 0.0013337739034813328, 5.144656422664855e-5, 0.00027058971453985963, 6.156854490126829e-7, 0.0002893457069484265, 0.9978657067427771, 0.00015239174018794998, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.18363095985545e-5, 0.00145195233272927, 6.385977016795895e-5, 0.00023445583121716195, 7.460345184812182e-7, 0.0002684078648481515, 0.997788011356809, 0.00016074716677422923, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [0.0, 0.5372211282057485, 1.8303205848483937, 3.596731618045692, 3.9999999999999996, 3.9999999999999996, 6.5359021187155175, 8.890655479269245, 11.999999999999998, 11.999999999999998 … 56.45281832978009, 59.73534137852707, 62.87824418366704, 65.92053630888242, 68.92273568146862, 71.93045897263562, 74.96466440954858, 81.08673782398581, 89.00680642424064, 100.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 3.975533182237751e-7, 5.8746681321624866e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.447011739979647e-7, 1.3009649386196195e-7, 1.023495784327969e-12, 5.218941911700416e-7, 3.6689504553997515e-7, 1.0237682167136716e-7, -1.967867062922352e-6, 1.9023131852571513e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.778104472688828e-7, 1.35093163099236e-7, 3.3745751032801063e-12, 5.278194591590906e-7, 3.4236637755326964e-7, 1.4097747252670332e-7, -2.0268287945950414e-6, 2.758500412756098e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [9.959841973271737e-7, 1.531883862395199e-7, 1.8072273564080273e-11, 5.50185948468967e-7, 2.5963437006289365e-7, 2.7443719994473795e-7, -2.2393778261770828e-6, 5.929651860226549e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.015263794924807e-6, 1.5584186588645774e-7, 2.1919707660144816e-11, 5.533464559168687e-7, 2.420800271064281e-7, 2.9939532802463753e-7, -2.2723108239542947e-6, 6.361432387435329e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0200003695744505e-6, 1.5650942964890343e-7, 2.288368278445024e-11, 5.541587307962962e-7, 2.3799634697448374e-7, 3.0534028421252256e-7, -2.2805005899236834e-6, 6.472545034242264e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.012144723319832e-6, 1.5653950338071896e-7, 2.0152366359180594e-11, 5.551332336013488e-7, 2.6095617744289847e-7, 2.8246184676105596e-7, -2.2738936519543833e-6, 6.638015082169944e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.012144723319832e-6, 1.5653950338071896e-7, 2.0152366359180594e-11, 5.551332336013488e-7, 2.6095617744289847e-7, 2.8246184676105596e-7, -2.2738936519543833e-6, 6.638015082169944e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0894068701344125e-6, 1.6958013068938604e-7, 3.397198440964341e-11, 5.727898610770179e-7, 2.2499221565057948e-7, 3.5477746579552103e-7, -2.4206925442256293e-6, 9.112028894302891e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.1704272256254985e-6, 1.847120845059125e-7, 5.895329883471288e-11, 5.955083723825491e-7, 2.099928338042823e-7, 4.1155464346069186e-7, -2.584469808020438e-6, 1.2215694942668848e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5119860316859187e-6, 2.435984477655043e-7, 2.0858718408581449e-10, 6.847405237969966e-7, 8.262077831883029e-8, 7.003555755032529e-7, -3.2474231698970372e-6, 2.3913225642448996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5905195167475747e-6, 2.5303914350662667e-7, 2.4836335840132445e-10, 6.969012847259948e-7, -4.967249083967475e-9, 8.136589048333653e-7, -3.3747323264096834e-6, 2.5332362321688162e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6099119938075902e-6, 2.5541003607251296e-7, 2.5829710876309215e-10, 7.000082138345695e-7, -2.5995139342841962e-8, 8.411384200085704e-7, -3.406428608720425e-6, 2.5696787231260393e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.5370521017627496e-6, 2.54667436999464e-7, 2.2656357102733725e-10, 7.065776571359763e-7, 1.717306896275291e-7, 6.413788576733121e-7, -3.3385642273847817e-6, 2.693092061472344e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5370521017627496e-6, 2.54667436999464e-7, 2.2656357102733725e-10, 7.065776571359763e-7, 1.717306896275291e-7, 6.413788576733121e-7, -3.3385642273847817e-6, 2.693092061472344e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.6684438461522305e-6, 2.804231584280961e-7, 3.0315300227323026e-10, 7.493758533627562e-7, 1.7036293550840157e-7, 7.128191964681612e-7, -3.614207417258212e-6, 3.247927433629293e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8229764518304226e-6, 3.1125019247801933e-7, 4.1500035007872735e-10, 8.027850732188608e-7, 1.7961500697997207e-7, 7.86883729787286e-7, -3.9431658919960005e-6, 3.9240437351360896e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.487139090719377e-6, 4.3949371261253155e-7, 9.799574396499113e-10, 1.0287508631131583e-6, 1.6769826820240992e-7, 1.1439876913801064e-6, -5.335016471910266e-6, 6.69668884430335e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.622184870606275e-6, 4.6261060152423604e-7, 1.1056951376542635e-9, 1.068678041661964e-6, 1.2333837527191798e-7, 1.250432575844371e-6, -5.5999757977874475e-6, 7.162563774102962e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6559386860588487e-6, 4.683855374306095e-7, 1.1371349848738814e-9, 1.0786716477302202e-6, 1.1223702356075567e-7, 1.277033148523157e-6, -5.66619502720743e-6, 7.27918489189646e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6282637647774934e-6, 4.7131051669870993e-7, 1.1155257839650508e-9, 1.088647664188981e-6, 2.3419119146462368e-7, 1.1626403524009908e-6, -5.660602128077139e-6, 7.443311276237481e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.680237335906125e-6, 4.816310168380622e-7, 1.1668069119995238e-9, 1.1075232962013482e-6, 2.383240873305648e-7, 1.1861425333433583e-6, -5.771732798327155e-6, 7.670772179569721e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.866259713377094e-6, 5.185503921399008e-7, 1.3538931684886767e-9, 1.1752715805524449e-6, 2.532328878408113e-7, 1.2700418381061657e-6, -6.1695525285452325e-6, 8.484222336032708e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8935182203199294e-6, 5.239538313901513e-7, 1.381939941884106e-9, 1.185222309665767e-6, 2.553895971507783e-7, 1.282339377633286e-6, -6.227836761988518e-6, 8.603148588672075e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.900351104647759e-6, 5.253083714986208e-7, 1.3889862771805745e-9, 1.1877180611673354e-6, 2.5593320351536345e-7, 1.2854188335023581e-6, -6.242448209774894e-6, 8.63296491662768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.899536482250212e-6, 5.251594715505344e-7, 1.3878489633338756e-9, 1.1874430995632117e-6, 2.5603683896469226e-7, 1.2849139209102907e-6, -6.240777916646745e-6, 8.630025444446996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.5796691822932524e-6, 4.6165854588181184e-7, 1.0685801465324056e-9, 1.0710640726766302e-6, 2.3041098455488586e-7, 1.14055895095176e-6, -5.556736458813271e-6, 7.230614230839756e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6282637647774934e-6, 4.7131051669870993e-7, 1.1155257839650508e-9, 1.088647664188981e-6, 2.3419119146462368e-7, 1.1626403524009908e-6, -5.660602128077139e-6, 7.443311276237481e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.680237335906125e-6, 4.816310168380622e-7, 1.1668069119995238e-9, 1.1075232962013482e-6, 2.383240873305648e-7, 1.1861425333433583e-6, -5.771732798327155e-6, 7.670772179569721e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.866259713377094e-6, 5.185503921399008e-7, 1.3538931684886767e-9, 1.1752715805524449e-6, 2.532328878408113e-7, 1.2700418381061657e-6, -6.1695525285452325e-6, 8.484222336032708e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8935182203199294e-6, 5.239538313901513e-7, 1.381939941884106e-9, 1.185222309665767e-6, 2.553895971507783e-7, 1.282339377633286e-6, -6.227836761988518e-6, 8.603148588672075e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.900351104647759e-6, 5.253083714986208e-7, 1.3889862771805745e-9, 1.1877180611673354e-6, 2.5593320351536345e-7, 1.2854188335023581e-6, -6.242448209774894e-6, 8.63296491662768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.899536482250212e-6, 5.251594715505344e-7, 1.3878489633338756e-9, 1.1874430995632117e-6, 2.5603683896469226e-7, 1.2849139209102907e-6, -6.240777916646745e-6, 8.630025444446996e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.2178625433454893e-6, 5.251556368596772e-7, 1.3879332926477228e-9, 1.1874003406063003e-6, 2.551199904915224e-7, 1.2858197741355627e-6, -4.559039516181947e-6, 8.629329745074784e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.2990355543894319e-6, 5.698386022243456e-7, 1.7402517755441655e-9, 1.1953445925215703e-6, 1.978223443222642e-7, 1.4392297372118996e-6, -4.804298167463034e-6, 1.0128708501797796e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3759703049585303e-6, 6.200938793646101e-7, 2.2310708899602758e-9, 1.2142698057860263e-6, 2.032791395223065e-7, 1.5382619206453477e-6, -5.073203401189533e-6, 1.1909728002275158e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8147589964904707e-6, 8.090789956096268e-7, 4.5682692893575e-9, 1.280153823897423e-6, -4.121963135709768e-7, 2.5406108006911214e-6, -6.218375609047127e-6, 1.814010366401039e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0044028082223087e-6, 8.37340487343598e-7, 5.077567322399395e-9, 1.2720519499257186e-6, -1.0449970339954065e-6, 3.231442786702747e-6, -6.4918411325756495e-6, 1.865225670542849e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0541525149233287e-6, 8.443572777600004e-7, 5.2064216547666556e-9, 1.2698094293092866e-6, -1.213617206520028e-6, 3.4143503102569502e-6, -6.5619992757256405e-6, 1.8774052834133606e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.7286384960867105e-6, 8.454029219682801e-7, 4.923338298682356e-9, 1.3260766481482323e-6, 2.2065006286622856e-7, 1.9780517432363566e-6, -6.3033572869242476e-6, 1.9961407631975665e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.7286384960867105e-6, 8.454029219682801e-7, 4.923338298682356e-9, 1.3260766481482323e-6, 2.2065006286622856e-7, 1.9780517432363566e-6, -6.3033572869242476e-6, 1.9961407631975665e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8198861551917693e-6, 9.002350052860318e-7, 5.680105785097074e-9, 1.3582070465782744e-6, 2.0663725063451088e-7, 2.100985521311831e-6, -6.610871530594989e-6, 2.192404458074751e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9181383414110147e-6, 9.618101090708282e-7, 6.6154186228936655e-9, 1.3996257596391502e-6, 2.1389448071648216e-7, 2.2143184143344635e-6, -6.955894142811724e-6, 2.4149161901689145e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3369734689025e-6, 1.195637277539827e-6, 1.0516395484676797e-8, 1.5612688992374057e-6, 5.377060085620435e-8, 2.8300572254937808e-6, -8.31208192183102e-6, 3.238580543166239e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.439516058947137e-6, 1.2327048572798377e-6, 1.122093253249273e-8, 1.5823422203331352e-6, -1.2820329813261709e-7, 3.0846053407582723e-6, -8.557638665584083e-6, 3.354525538658255e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.465716313505995e-6, 1.2419801827321923e-6, 1.1398500531876625e-8, 1.5876379825305319e-6, -1.7601593670312098e-7, 3.1505166253610853e-6, -8.619582874426755e-6, 3.383492064681956e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5189214862659933e-6, 1.3333962559732808e-6, 1.2912552197025214e-8, 1.6766376342029373e-6, 2.521307166099311e-7, 2.8956181303612453e-6, -9.064583372292236e-6, 3.749665966818225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.698410781266678e-6, 1.4440254580522008e-6, 1.502831549276214e-8, 1.7691581742819923e-6, 2.712663019499968e-7, 3.08796286304191e-6, -9.700251936373809e-6, 4.144000422882685e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.443880597842922e-6, 1.883757201812103e-6, 2.3965326633040017e-8, 2.1447668846180473e-6, 2.2330312980492373e-7, 3.977473541315415e-6, -1.2264965876474723e-5, 5.678191944482715e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.596050349381799e-6, 1.9588187545502646e-6, 2.5600699236276005e-8, 2.2055369878331326e-6, 1.0776377391022095e-7, 4.23820834767321e-6, -1.2724433569879047e-5, 5.924546572941443e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634977542279562e-6, 1.977585824723179e-6, 2.6011735329960162e-8, 2.220734642994125e-6, 7.513827477301473e-8, 4.3070573001656105e-6, -1.2840105979786457e-5, 5.986006595210063e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540852621613213e-6, 1.9605133936636697e-6, 2.5536761031710507e-8, 2.2209234839958036e-6, 3.6423091955976233e-7, 3.980017080662269e-6, -1.268844152240087e-5, 5.963672618744396e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3629040412243714e-6, 1.2377919156981864e-6, 1.1206795918996813e-8, 1.601867523705265e-6, 2.448206652547767e-7, 2.718885156131888e-6, -8.518215421614788e-6, 3.4073932368130375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5189214862659933e-6, 1.3333962559732808e-6, 1.2912552197025214e-8, 1.6766376342029373e-6, 2.521307166099311e-7, 2.8956181303612453e-6, -9.064583372292236e-6, 3.749665966818225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.698410781266678e-6, 1.4440254580522008e-6, 1.502831549276214e-8, 1.7691581742819923e-6, 2.712663019499968e-7, 3.08796286304191e-6, -9.700251936373809e-6, 4.144000422882685e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.443880597842922e-6, 1.883757201812103e-6, 2.3965326633040017e-8, 2.1447668846180473e-6, 2.2330312980492373e-7, 3.977473541315415e-6, -1.2264965876474723e-5, 5.678191944482715e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.596050349381799e-6, 1.9588187545502646e-6, 2.5600699236276005e-8, 2.2055369878331326e-6, 1.0776377391022095e-7, 4.23820834767321e-6, -1.2724433569879047e-5, 5.924546572941443e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.634977542279562e-6, 1.977585824723179e-6, 2.6011735329960162e-8, 2.220734642994125e-6, 7.513827477301473e-8, 4.3070573001656105e-6, -1.2840105979786457e-5, 5.986006595210063e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.540852621613213e-6, 1.9605133936636697e-6, 2.5536761031710507e-8, 2.2209234839958036e-6, 3.6423091955976233e-7, 3.980017080662269e-6, -1.268844152240087e-5, 5.963672618744396e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]] … [[-3.381267917004813e-6, 2.19099402550345e-5, 9.213957618043863e-7, -4.1486285271433495e-6, -5.529764279165106e-7, 2.1897675732611493e-6, -1.980828219161283e-5, 2.870051473577471e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.243152647820438e-6, 2.175173415427011e-5, 9.369437443109517e-7, -4.4138416351769345e-6, -2.5702599655789455e-7, 1.7587060064906377e-6, -1.9387716616679387e-5, 2.8543529911629535e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.082993768741044e-6, 2.159187232447479e-5, 9.527973752901229e-7, -4.642637585303854e-6, -3.291007672628115e-7, 1.6955634798555046e-6, -1.9019396173648163e-5, 2.8338951153354524e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.078719696808862e-6, 2.1084369675774164e-5, 1.0063620359523486e-6, -5.275720016932264e-6, 4.6126726285705395e-6, -3.7186343827755856e-6, -1.7421697057678778e-5, 2.791366813898435e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.547358867541326e-6, 2.1044346444549715e-5, 1.0133700481110474e-6, -5.296220936103832e-6, 1.0037413944359978e-5, -9.224482401979713e-6, -1.684184223601382e-5, 2.8147740046179515e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.683275148317783e-6, 2.103576735555822e-5, 1.0151077424167798e-6, -5.296157018821861e-6, 1.1573715854647057e-5, -1.0781879240909123e-5, -1.668499277756906e-5, 2.821713232995776e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4681022063937177e-6, 2.0961016069541454e-5, 1.0160652810249172e-6, -5.418749363010762e-6, -9.138801983534357e-7, 1.7498045667900298e-6, -1.766815362353641e-5, 2.7419994739379266e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.4681022063937177e-6, 2.0961016069541454e-5, 1.0160652810249172e-6, -5.418749363010762e-6, -9.138801983534357e-7, 1.7498045667900298e-6, -1.766815362353641e-5, 2.7419994739379266e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4052617365544616e-6, 2.082271932369202e-5, 1.030556370146211e-6, -5.5507529152916816e-6, -3.955130266265395e-7, 1.1083921683737438e-6, -1.7333164908547472e-5, 2.72302472480818e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2886998300847916e-6, 2.06798374915768e-5, 1.0452885387925627e-6, -5.6664742422718885e-6, -5.105297792209028e-7, 1.103376687561572e-6, -1.7060649104324204e-5, 2.6978502379708546e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.775152445726276e-6, 2.0252061619421115e-5, 1.0947104779067478e-6, -5.869606830035715e-6, 7.770848186574302e-6, -7.6145099243862535e-6, -1.552063686812759e-5, 2.662285784373672e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.6272235791424225e-6, 2.0244659893535775e-5, 1.1009714300128195e-6, -5.7664815279030805e-6, 1.6786337498909623e-5, -1.6721904193990146e-5, -1.472295545979051e-5, 2.7065959383679417e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.869013191533542e-6, 2.024486039904801e-5, 1.1025154129682493e-6, -5.734354087461667e-6, 1.93227467042501e-5, -1.9282489694661675e-5, -1.4503677950962142e-5, 2.7194124083526675e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8200768668176683e-6, 2.0111811662668572e-5, 1.1038619011150746e-6, -6.045125384327728e-6, -1.3624846484222356e-6, 1.4897350086589851e-6, -1.6065621956113974e-5, 2.587900283238974e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8200768668176683e-6, 2.0111811662668572e-5, 1.1038619011150746e-6, -6.045125384327728e-6, -1.3624846484222356e-6, 1.4897350086589851e-6, -1.6065621956113974e-5, 2.587900283238974e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.818633264060738e-6, 1.999133908097953e-5, 1.1169568668010538e-6, -6.0916703344860154e-6, -5.990097391757718e-7, 6.196842180223306e-7, -1.5786169014954133e-5, 2.5675021868737412e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7337222299660933e-6, 1.986380284919371e-5, 1.1302434343606001e-6, -6.137147928539317e-6, -7.30125427148256e-7, 6.492933406857526e-7, -1.5581924253633082e-5, 2.5395802150466835e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.6191584262800105e-6, 1.9507140489108534e-5, 1.1745157543028589e-6, -6.059385220993592e-6, 1.045197735879122e-5, -1.0920733105635568e-5, -1.4048614317247774e-5, 2.5142574679543306e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.783973620063198e-6, 1.9527142826596193e-5, 1.1799355447889564e-6, -5.865762795011692e-6, 2.242501554510557e-5, -2.2991636151808173e-5, -1.3066935324595195e-5, 2.5762139749875397e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.109284353924598e-6, 1.9534518100760505e-5, 1.1812654473951275e-6, -5.8104902628467815e-6, 2.5755791671557787e-5, -2.6348293371431087e-5, -1.2797305193658028e-5, 2.593797962147075e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3860868531261349e-6, 1.9354609886500746e-5, 1.1829094609949803e-6, -6.26907834307728e-6, -1.5726702197263384e-6, 1.1004881290055103e-6, -1.483076283911053e-5, 2.4205907785390454e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.3860868531261349e-6, 1.9354609886500746e-5, 1.1829094609949803e-6, -6.26907834307728e-6, -1.5726702197263384e-6, 1.1004881290055103e-6, -1.483076283911053e-5, 2.4205907785390454e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4179518144121359e-6, 1.924611412499184e-5, 1.1947657332598888e-6, -6.266682611272057e-6, -7.108750279647123e-7, 1.4765632115196929e-7, -1.4591827930518746e-5, 2.3988012047639546e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3559379606637093e-6, 1.912961536050941e-5, 1.206767821777101e-6, -6.270826977967682e-6, -8.265480515644447e-7, 1.7812260912958693e-7, -1.4430421779428157e-5, 2.369228978207894e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.375003867328165e-6, 1.8813895840204587e-5, 1.2465860354125265e-6, -6.049232298053267e-6, 1.0994986330938624e-5, -1.1979572863603822e-5, -1.2994380535444465e-5, 2.342721357873982e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.602602083885584e-6, 1.8842694754664864e-5, 1.251375092072909e-6, -5.825113830076451e-6, 2.349110791689658e-5, -2.45690577511482e-5, -1.199573730927293e-5, 2.407333210748816e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.942166427981974e-6, 1.885215247039419e-5, 1.2525476015821717e-6, -5.762738570039352e-6, 2.6939276502214277e-5, -2.804191409735615e-5, -1.1722662745786174e-5, 2.4255052669730115e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1039099038780832e-6, 1.8663597423963575e-5, 1.2542020895777453e-6, -6.256300563814893e-6, -1.4883988781778066e-6, 5.12772341778895e-7, -1.3827504187249562e-5, 2.245541677800132e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.1039099038780832e-6, 1.8663597423963575e-5, 1.2542020895777453e-6, -6.256300563814893e-6, -1.4883988781778066e-6, 5.12772341778895e-7, -1.3827504187249562e-5, 2.245541677800132e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.1453953318927162e-6, 1.8561853359402396e-5, 1.2650560073218399e-6, -6.226936055714635e-6, -6.810191696064966e-7, -3.720779721666287e-7, -1.3623277049264835e-5, 2.2217962119210767e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.099161317876711e-6, 1.845239868909109e-5, 1.2760078437178048e-6, -6.206347153789183e-6, -7.772826614680914e-7, -3.4757302889215255e-7, -1.3488971360816359e-5, 2.1909289900336026e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.059438798945316e-6, 1.8152928368719673e-5, 1.3122573871026803e-6, -5.925513432994125e-6, 1.0007018429570025e-5, -1.1418091572347403e-5, -1.2222783244083697e-5, 2.153622862978163e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1777738554627934e-6, 1.817728769242105e-5, 1.316612452554666e-6, -5.710299180215085e-6, 2.1346304862018465e-5, -2.283971946189184e-5, -1.1322837708552495e-5, 2.210425199128037e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.485943157464516e-6, 1.8185350671029787e-5, 1.3176783059717552e-6, -5.65104204063682e-6, 2.4465140629729538e-5, -2.5980307985662613e-5, -1.1077275282299705e-5, 2.2263988593325788e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.117032524363901e-7, 1.8013970888862445e-5, 1.3191508743254647e-6, -6.1043519717478055e-6, -1.2992354923411383e-6, -9.991416423403755e-8, -1.2981239686123291e-5, 2.0633228036947534e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.117032524363901e-7, 1.8013970888862445e-5, 1.3191508743254647e-6, -6.1043519717478055e-6, -1.2992354923411383e-6, -9.991416423403755e-8, -1.2981239686123291e-5, 2.0633228036947534e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.532773336499276e-7, 1.7915973057837926e-5, 1.3291423798521933e-6, -6.0596295767796795e-6, -5.925420202032646e-7, -8.722351129874949e-7, -1.2805012274801225e-5, 2.0375808807314696e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.174755849257584e-7, 1.781089422355335e-5, 1.3391844360889053e-6, -6.023938898098468e-6, -6.784291837929716e-7, -8.466248783542464e-7, -1.2689184279150145e-5, 2.005574164679333e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7773351658822169e-6, 1.7517121143428624e-5, 1.3723508321925138e-6, -5.719440751135529e-6, 8.797496761705273e-6, -1.0564250929890347e-5, -1.1582325733793766e-5, 1.9563838433754477e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.763094666095991e-6, 1.753437270522977e-5, 1.376345200028298e-6, -5.521804712409807e-6, 1.876887913425996e-5, -2.0606783249823932e-5, -1.0792038036331286e-5, 2.00412362514299e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.034772811008178e-6, 1.7540427623977655e-5, 1.3773223402514458e-6, -5.4676447304303124e-6, 2.151270359974714e-5, -2.3369417624671044e-5, -1.0576247399339742e-5, 2.017629001473042e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.697846909701057e-7, 1.738946110936435e-5, 1.3785963360602607e-6, -5.869417505645438e-6, -1.1474924741549111e-6, -6.065587435365608e-7, -1.2248993028519169e-5, 1.8741889974015734e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-7.697846909701057e-7, 1.738946110936435e-5, 1.3785963360602607e-6, -5.869417505645438e-6, -1.1474924741549111e-6, -6.065587435365608e-7, -1.2248993028519169e-5, 1.8741889974015734e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109190461022805e-7, 1.7294050665579466e-5, 1.3877518819178673e-6, -5.81560022016712e-6, -5.174083230756376e-7, -1.2916589080930418e-6, -1.2093164866637963e-5, 1.8469488165787083e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820889474369455e-7, 1.7192025768419744e-5, 1.3969144790039872e-6, -5.770951033571307e-6, -6.004825974550449e-7, -1.2585367889346076e-6, -1.1990968471609773e-5, 1.8140875915839476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5761461247502398e-6, 1.690262245259653e-5, 1.4270775543305573e-6, -5.454321679481676e-6, 8.000657817727649e-6, -1.006281055028852e-5, -1.0993899283212997e-5, 1.7568198130786964e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4761070852016663e-6, 1.6915382574334303e-5, 1.4306984501187316e-6, -5.26845482640581e-6, 1.7084015209677465e-5, -1.9208756499455086e-5, -1.0275434839892815e-5, 1.798657016824875e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.72460641361702e-6, 1.6920194346264993e-5, 1.4315828520274998e-6, -5.21761502106423e-6, 1.9588837940026163e-5, -2.173017756970409e-5, -1.0078800517803666e-5, 1.8105843838703482e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589152347374774e-7, 1.6782374965434526e-5, 1.4327224525503169e-6, -5.586352736586317e-6, -1.0701867679092845e-6, -9.77133517454815e-7, -1.1602344594738842e-5, 1.679835433441896e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-6.7769002484549e-7, 1.6441430224501638e-5, 1.460861350644427e-6, -5.3941344440122106e-6, -3.613643561224527e-7, -1.8254370726801634e-6, -1.1212941329696461e-5, 1.56927565221077e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-6.622336213679308e-7, 1.6202791971562744e-5, 1.4793300404563526e-6, -5.263234870205564e-6, -1.9656649965461284e-7, -2.0749189747932267e-6, -1.0974776927755446e-5, 1.489608881757684e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-5.706727345775745e-7, 1.5209192868774685e-5, 1.5506750681144632e-6, -4.719335010352031e-6, 4.612701982616739e-8, -2.6191857240637563e-6, -1.0050281230988655e-5, 1.1534797432673564e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-5.44225015135105e-7, 1.4921389600607098e-5, 1.5673104069971063e-6, -4.562319488184117e-6, 1.6458073287943657e-8, -2.64364403353796e-6, -9.809938510592976e-6, 1.0549689665579947e-6, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]], [[-4.539421669125747e-7, 1.3698592141660788e-5, 1.6281209457467823e-6, -3.9091654764894625e-6, -1.9624623504724772e-8, -2.77495729654049e-6, -8.810338939086379e-6, 6.413154151270947e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.36102069030113e-7, 1.3337042480245753e-5, 1.6389442418778632e-6, -3.729850996554483e-6, -1.3939040420181559e-8, -2.7896009133848598e-6, -8.530475401481314e-6, 5.239816987472587e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 2, 2, 2], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.18363095985545e-5, 0.00145195233272927, 6.385977016795895e-5, 0.00023445583121716195, 7.460345184812182e-7, 0.0002684078648481515, 0.997788011356809, 0.00016074716677422923, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-6.589152347374774e-7, 1.6782374965434526e-5, 1.4327224525503169e-6, -5.586352736586317e-6, -1.0701867679092845e-6, -9.77133517454815e-7, -1.1602344594738842e-5, 1.679835433441896e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.109190461022805e-7, 1.7294050665579466e-5, 1.3877518819178673e-6, -5.81560022016712e-6, -5.174083230756376e-7, -1.2916589080930418e-6, -1.2093164866637963e-5, 1.8469488165787083e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.820889474369455e-7, 1.7192025768419744e-5, 1.3969144790039872e-6, -5.770951033571307e-6, -6.004825974550449e-7, -1.2585367889346076e-6, -1.1990968471609773e-5, 1.8140875915839476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5761461247502398e-6, 1.690262245259653e-5, 1.4270775543305573e-6, -5.454321679481676e-6, 8.000657817727649e-6, -1.006281055028852e-5, -1.0993899283212997e-5, 1.7568198130786964e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.4761070852016663e-6, 1.6915382574334303e-5, 1.4306984501187316e-6, -5.26845482640581e-6, 1.7084015209677465e-5, -1.9208756499455086e-5, -1.0275434839892815e-5, 1.798657016824875e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.72460641361702e-6, 1.6920194346264993e-5, 1.4315828520274998e-6, -5.21761502106423e-6, 1.9588837940026163e-5, -2.173017756970409e-5, -1.0078800517803666e-5, 1.8105843838703482e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.589152347374774e-7, 1.6782374965434526e-5, 1.4327224525503169e-6, -5.586352736586317e-6, -1.0701867679092845e-6, -9.77133517454815e-7, -1.1602344594738842e-5, 1.679835433441896e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.094386466275098e-8, -4.0832965246383995e-9, 3.3617579396597355e-11, -1.1081353161202793e-8, -6.085493963956286e-7, 6.112673076589914e-7, -4.4701561641320786e-8, -3.829182178354222e-9, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.7528076029147843e-5, 0.0015832259826488114, 7.984671657944602e-5, 0.000197538719361013, 5.949228118448163e-7, 0.0002411870287806347, 0.9977039202890063, 0.00016617493144556147, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.05844899743163789, -0.0018273223367191451, 3.225048157565469e-5, -0.008394071278312371, -0.6073703250789415, 0.4674285803921109, -4.4747704451308e-5, -0.003349317884910291, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.18363095985545e-5, 0.00145195233272927, 6.385977016795895e-5, 0.00023445583121716195, 7.460345184812182e-7, 0.0002684078648481515, 0.997788011356809, 0.00016074716677422923, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-4.539421669125747e-7, 1.3698592141660788e-5, 1.6281209457467823e-6, -3.9091654764894625e-6, -1.9624623504724772e-8, -2.77495729654049e-6, -8.810338939086379e-6, 6.413154151270947e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.36102069030113e-7, 1.3337042480245753e-5, 1.6389442418778632e-6, -3.729850996554483e-6, -1.3939040420181559e-8, -2.7896009133848598e-6, -8.530475401481314e-6, 5.239816987472587e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.112406214710343e-7, 1.2929096687455291e-5, 1.663939163702992e-6, -3.495952291728971e-6, 8.514075669941686e-9, -2.8773565733755804e-6, -8.194449140196514e-6, 3.774486999432372e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.803647172647155e-7, 1.4226571047302546e-5, 1.6074716677422923e-6, -4.183253978725521e-6, -5.516909982597883e-8, -2.7026881223197527e-6, -9.229709710294408e-6, 8.171429133855375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.3522387794496805e-7, 1.332525467715683e-5, 1.6427221902503454e-6, -3.715358108307052e-6, 5.50911673575471e-9, -2.826056849309128e-6, -8.51383374737104e-6, 5.169865987892595e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.803647172647155e-7, 1.4226571047302546e-5, 1.6074716677422923e-6, -4.183250485061387e-6, -5.516909982597883e-8, -2.7026916159838865e-6, -9.229709710294408e-6, 8.171429133855375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.9302167118165197e-7, 1.2464184384188074e-5, 1.6650739901871308e-6, -3.29694754716502e-6, -2.1282862747196428e-10, -2.8249537317726787e-6, -7.854835644968124e-6, 2.4071304933974225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0964623056263676 0.0 … -3.183630959568973e-5 0.0; 0.07999999999992724 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [-1.3105924041194585 0.0 … -0.000102507563668619 0.0; -0.19654207311563912 -1.0 … -2.0147049073463746e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [1.2864509359691114e-8, -8.500694222940325e-8, 2.5965237422978923e-8, 1.0000915840073525e-7, 3.072145601971258e-8, -1.3395580717118404e-7, 1.029012821922011e-7, -5.349889399372329e-8, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.012467587387670212, -0.03271298222030447, 0.024000175054546408, 0.08101477255944198, 0.030698553838881325, -0.10560941072942706, 0.00010302614871439465, -0.04586245577072851, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [969145.9688882816, 407838.27101846604, 939973.5078262459, 810073.5358137597, 999254.5216341127, 788389.9396348476, 1001.2134593421326, 861514.0563117177, 4761.9047619047615, 4975.124378109453 … 166666.66666666666, 111111.11111111111, 62500.0, 12345.679012345678, 47619.04761904761, 47619.04761904761, 47619.04761904761, 90909.09090909091, 38461.53846153846, 38461.53846153846], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a03d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a03f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0410, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0430, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.18363095985545e-5, 0.00145195233272927, 6.385977016795895e-5, 0.00023445583121716195, 7.460345184812182e-7, 0.0002684078648481515, 0.997788011356809, 0.00016074716677422923, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 1.1128008861606955, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a03d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a03f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0410, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0430, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 89.00680642424064, [1.0, 1.0, 0.01, 1.1128008861606955, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [-4.393556756320966e-7, 1.3432744905939121e-5, 1.6517859502393538e-6, -3.737664195706808e-6, 7.289100927872597e-8, -2.9507144652181866e-6, -8.570192409779472e-6, 5.405048808778753e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([-1.3105924041194585 0.0 … -0.000102507563668619 0.0; -0.19654207311563912 -1.0 … -2.0147049073463746e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [-4.393556756320966e-7, 1.3432744905939121e-5, 1.6517859502393538e-6, -3.737664195706808e-6, 7.289100927872597e-8, -2.9507144652181866e-6, -8.570192409779472e-6, 5.405048808778753e-7, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.2864509359691114e-8, -8.500694222940325e-8, 2.5965237422978923e-8, 1.0000915840073525e-7, 3.072145601971258e-8, -1.3395580717118404e-7, 1.029012821922011e-7, -5.349889399372329e-8, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}([-1.3105924041194585 0.0 … -0.000102507563668619 0.0; -0.19654207311563912 -1.0 … -2.0147049073463746e-5 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], 0), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 … 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]), false, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([969145.9688882816 0.0 … 0.0 0.0; 0.0 407838.27101846604 … 0.0 0.0; … ; 0.0 0.0 … 38461.53846153846 0.0; 0.0 0.0 … 0.0 38461.53846153846]), [969145.9688882816 0.0 … 0.0 0.0; 0.0 407838.27101846604 … 0.0 0.0; … ; 0.0 0.0 … 38461.53846153846 0.0; 0.0 0.0 … 0.0 38461.53846153846], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([1.2864509359691114e-8, -8.500694222940325e-8, 2.5965237422978923e-8, 1.0000915840073525e-7, 3.072145601971258e-8, -1.3395580717118404e-7, 1.029012821922011e-7, -5.349889399372329e-8, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.803647172647155e-7, 1.4226571047302546e-5, 1.6074716677422923e-6, -4.183253978725521e-6, -5.516909982597883e-8, -2.7026881223197527e-6, -9.229709710294408e-6, 8.171429133855375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [-4.803647172647155e-7, 1.4226571047302546e-5, 1.6074716677422923e-6, -4.183250485061387e-6, -5.516909982597883e-8, -2.7026916159838865e-6, -9.229709710294408e-6, 8.171429133855375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-4.803647172647155e-7, 1.4226571047302546e-5, 1.6074716677422923e-6, -4.183250485061387e-6, -5.516909982597883e-8, -2.7026916159838865e-6, -9.229709710294408e-6, 8.171429133855375e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(13, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), true, 10, 3, 9//10, 9//10, 2, false, 5), 2)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 277
Number of function 2 evaluations: 0
Number of W matrix evaluations: 3
Number of linear solves: 9
Number of Jacobians created: 3
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 1041
Number of accepted steps: 33
Number of rejected steps: 1
Maximum eigenvalue recorded: 1, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1 … 1, 1, 1, 1, 1, 1, 1, 2, 2, 2], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a06f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a0710, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a06f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a0710, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-3.9302167118165197e-7, 1.2464184384188074e-5, 1.6650739901871308e-6, -3.29694754716502e-6, 4.3952669876908305e-7, -3.2646932591692343e-6, -7.854835644968124e-6, 2.4071304933974225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-3.9302167118165197e-7, 1.2464184384188074e-5, 1.6650739901871308e-6, -3.29694754716502e-6, 4.3952669876908305e-7, -3.2646932591692343e-6, -7.854835644968124e-6, 2.4071304933974225e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.93499148285866e-310 6.9349915658522e-310 … 6.9349914895242e-310 6.93532588937526e-310; 6.934991489725e-310 6.93499148707996e-310 … 6.93523783334135e-310 6.93523783353265e-310; … ; 6.93499156584113e-310 6.934991487159e-310 … 6.9349914895495e-310 6.9352378557419e-310; 6.9349915658506e-310 6.93523763287244e-310 … 6.93499160208263e-310 6.93499148957005e-310], [6.9353220926594e-310 6.93532216638825e-310 … 6.93532217185854e-310 6.93523805710645e-310; 6.9353220926594e-310 6.9353220926594e-310 … 6.93532209148157e-310 6.93532209148157e-310; … ; 6.9353221664317e-310 6.93532216638825e-310 … 6.9353220926594e-310 6.93532209148157e-310; 6.93532216638825e-310 6.93532209148157e-310 … 6.93532209148157e-310 6.9353220926594e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a06f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a0710, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [2.7042155134917295e-5, 0.0015985690224427373, 8.187700147879848e-5, 0.00019345285720329954, 5.927999488818281e-7, 0.0002377412420081966, 0.9976942341894272, 0.00016650739901871307, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7200, Ptr{Nothing} @0x00007fa93c9a06f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faabdfc7420, Ptr{Nothing} @0x00007fa93c9a0710, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7640, Ptr{Nothing} @0x00007fa93c9a0730, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faabdfc7870, Ptr{Nothing} @0x00007fa93c9a0770, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.9353220926594e-310 6.93532216638825e-310 … 6.93532217185854e-310 6.93523805710645e-310; 6.9353220926594e-310 6.9353220926594e-310 … 6.93532209148157e-310 6.93532209148157e-310; … ; 6.9353221664317e-310 6.93532216638825e-310 … 6.9353220926594e-310 6.93532209148157e-310; 6.93532216638825e-310 6.93532209148157e-310 … 6.93532209148157e-310 6.9353220926594e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 0
Number of rejected steps: 0, [1], SciMLBase.ReturnCode.Success)), :XTOL_REACHED)Question 2
Ingest SIDARTHE-V
This is a handwritten verison of the SIDARTHE-V model, built from the exported SIDARTHE SBML and then manually handcorrected to be the SIDARTHE-V model. This should swap to the TA1/TA2 model form when available.
sysv = eval(quote
var"##iv#608" = (@variables(t))[1]
var"##sts#609" = (collect)(@variables(Infected(t), Healed(t), Extinct(t),
Diagnosed(t), Ailing(t),
Recognized(t), Susceptible(t),
Threatened(t), Vaccinated(t),
alpha(t), epsilon(t), gamma(t),
beta(t), delta(t), mu(t), nu(t),
lambda(t), rho(t), kappa(t), xi(t),
sigma(t), zeta(t), eta(t)))
var"##ps#610" = (collect)(@parameters(ModelValue_21, epsilon_modifier, tau,
theta, ModelValue_19, ModelValue_20,
Event_trigger_Fig4b,
Event_trigger_Fig3d, ModelValue_16,
Event_trigger_Fig3b, alpha_modifier,
Event_trigger_Fig4d, ModelValue_17,
ModelValue_18, Italy, tau1, phi))
var"##eqs#611" = [(~)((Differential(t))(Infected),
(+)((*)((+)((/)((*)(Infected, alpha), Italy),
(/)((*)(Diagnosed, beta), Italy),
(/)((*)(Ailing, gamma), Italy),
(/)((*)(Recognized, delta), Italy)),
Susceptible), (*)(-1 // 1, Infected, epsilon),
(*)(-1 // 1, Infected, lambda),
(*)(-1 // 1, Infected, zeta)))
(~)((Differential(t))(Healed),
(+)((*)(Ailing, kappa), (*)(Diagnosed, rho),
(*)(Infected, lambda), (*)(Recognized, xi),
(*)(Threatened, sigma)))
(~)((Differential(t))(Extinct),
(*)(tau, Threatened) + tau1 * Recognized)
(~)((Differential(t))(Diagnosed),
(+)((*)(Infected, epsilon),
(*)(-1 // 1, Diagnosed, eta),
(*)(-1 // 1, Diagnosed, rho)))
(~)((Differential(t))(Ailing),
(+)((*)(Infected, zeta), (*)(-1 // 1, theta, Ailing),
(*)(-1 // 1, Ailing, kappa),
(*)(-1 // 1, Ailing, mu)))
(~)((Differential(t))(Recognized),
(+)((*)(theta, Ailing), (*)(Diagnosed, eta),
(*)(-1 // 1, Recognized, nu),
(*)(-1 // 1, Recognized, xi)))
(~)((Differential(t))(Susceptible),
(*)((+)((/)((*)(-1, Infected, alpha), Italy),
(/)((*)(-1, Diagnosed, beta), Italy),
(/)((*)(-1, Ailing, gamma), Italy),
(/)((*)(-1, Recognized, delta), Italy)) -
phi * Susceptible,
Susceptible))
(~)((Differential(t))(Threatened),
(+)((*)(Ailing, mu), (*)(Recognized, nu),
(*)(-1 // 1, tau, Threatened),
(*)(-1 // 1, Threatened, sigma)))
Differential(t)(Vaccinated) ~ phi * Susceptible
(~)((Differential(t))(alpha), -0.0);
(~)((Differential(t))(epsilon), -0.0);
(~)((Differential(t))(gamma), -0.0);
(~)((Differential(t))(beta), -0.0);
(~)((Differential(t))(delta), -0.0);
(~)((Differential(t))(mu), -0.0);
(~)((Differential(t))(nu), -0.0);
(~)((Differential(t))(lambda), -0.0);
(~)((Differential(t))(rho), -0.0);
(~)((Differential(t))(kappa), -0.0);
(~)((Differential(t))(xi), -0.0);
(~)((Differential(t))(sigma), -0.0);
(~)((Differential(t))(zeta), -0.0);
(~)((Differential(t))(eta), -0.0)]
var"##defs#612" = (Dict)((Pair)(delta, 0.011), (Pair)(xi, 0.017),
(Pair)(Diagnosed, 3.33333333e-7),
(Pair)(Event_trigger_Fig3b, 0.0),
(Pair)(Extinct, 0.0), (Pair)(kappa, 0.017),
(Pair)(zeta, 0.125), (Pair)(eta, 0.125),
(Pair)(nu, 0.027), (Pair)(Healed, 0.0),
(Pair)(Infected, 3.33333333e-6),
(Pair)(ModelValue_16, 0.0),
(Pair)(alpha_modifier, 1.0), (Pair)(Italy, 1.0),
(Pair)(Event_trigger_Fig3d, 0.0),
(Pair)(ModelValue_20, 1.0), (Pair)(sigma, 0.017),
(Pair)(Threatened, 0.0), (Pair)(lambda, 0.034),
(Pair)(alpha, 0.57),
(Pair)(Event_trigger_Fig4b, 0.0),
(Pair)(ModelValue_17, 0.0),
(Pair)(Event_trigger_Fig4d, 0.0),
(Pair)(Susceptible, 0.9999963),
(Pair)(beta, 0.011),
(Pair)(Recognized, 3.33333333e-8),
(Pair)(rho, 0.034), (Pair)(mu, 0.017),
(Pair)(epsilon, 0.171),
(Pair)(Ailing, 1.66666666e-8),
(Pair)(gamma, 0.456), (Pair)(ModelValue_19, 0.0),
(Pair)(ModelValue_21, 1.0), (Pair)(theta, 0.371),
(Pair)(epsilon_modifier, 1.0), (Pair)(tau, 0.01),
(Pair)(ModelValue_18, 0.0),
Vaccinated => 0,
tau1 => 0.0200,
phi => 0.0025)
var"##iv#613" = (@variables(t))[1]
(ODESystem)(var"##eqs#611", var"##iv#613", var"##sts#609", var"##ps#610";
defaults = var"##defs#612", name = Symbol("##SBML#530"),
checks = false)
end)
# todo set the event flags
# todo validate the new params
probv = ODEProblem(sysv, [], (0, 100))
solv = solve(probv, Tsit5())
plot(solv)
plot(solv, idxs = [og_states; Vaccinated])
plot(solt1; idxs = sum(idart))
xmax, xmaxval = get_max_t(probv, sum(idart) * ITALY_POPULATION)
xmax, xmaxval = get_max_t(probv, sum(idart))
@test isapprox(xmax, 47; atol = 5)
@test isapprox(xmaxval, 0.6; atol = 0.1)Test PassedSetup the Parameters
Set the same initial values and parameter settings in 1.b.i. Let V(t=0) = 0, τ (in SIDARTHE) = τ2 (in SIDDARTHE-V), and τ1 = (1/3)*τ2 (reflecting the fact that the mortality rate for critical conditions (state T), will always be larger than for other infected states). Assume that the vaccination rate psi is 0 to start with. The SIDARTHE-V model allows for three main types of interventions: (1) Those that impact the transmission parameters (α, β, γ and δ) – social distancing, masking, lockdown; (2) Those that impact the detection parameters (ε, θ) – testing and contact tracing; (3) Those that impact the vaccination rate psi – vaccination campaigns. Assume previously stated constraints: θ >= 2* ε, and τ1 = (1/3)*τ2.
b.i
Let’s say our goal is to ensure that the total infected population (sum over all the infected states I, D, A, R, T) never rises above 1/3 of the total population, over the course of the next 100 days. If you could choose only a single intervention (affecting only one parameter), which intervention would let us meet our goal, with minimal change to the intervention parameter? Assume that the intervention will be implemented after one month (t = day 30), and will stay constant after that, over the remaining time period (i.e. the following 70 days). What are equivalent interventions of the other two intervention types, that would have the same impact on total infections?
This is a straightforward usage of the EasyModelAnalysis.optimal_parameter_intervention_for_threshold function designed during the ASKEM hackathon. It was able to be used without modification. However, a modeling decision had to be made to define what the "intervention parameters" are. A data request back to TA1/TA2 has been made to define which parameters should be in this set.
intervention_parameters = [theta] # Need to figure out what these should be
[p => EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob,
threshold_observable,
0.33,
p -
ModelingToolkit.defaults(sys)[p],
[p], [0.0],
3 .* [
ModelingToolkit.defaults(sys)[p],
],
(30.0, 100.0);
maxtime = 60)
for p in intervention_parameters]1-element Vector{Pair{Num, Tuple{Dict{Num, Float64}, Tuple{ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}}, Symbol}}}:
theta => (Dict(theta => 2.3642415197829635e-17), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], nothing, nothing, [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fcb4f10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fcb4f30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fcb4f50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fcb4f70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 30.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fcb4f10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fcb4f30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fcb4f50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fcb4f70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-5.390961837841079e-10, 9.572844952319827e-11, -1.2202406872160754e-12, 2.4494367647022593e-10, 1.825142725703532e-9, -1.8512669504982965e-9, 1.8701730533659872e-10, 3.8751217926882333e-11, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0005099821840077465, 0.0004124041986338562, 3.4583716924347714e-6, 0.0004593135827010452, 4.313325575975515e-5, 0.0002733259261631827, 0.9982565817891844, 4.1817358520308544e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-0.0003500785030051232, 6.719860876612745e-5, -1.2159215845920634e-6, 0.00016660604101897576, 0.0017496031168409653, -0.0014480739075501772, 1.871171644922294e-7, 3.716927369484967e-5, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.056183604e-315 0.0 … 0.0 NaN; 1.0e-323 3.918090214e-315 … NaN 0.0; … ; 3.056184395e-315 0.0 … 5.0e-324 0.0; 1.0e-323 3.918091756e-315 … 0.0 NaN], [-0.09694714336635002 0.0 … -5.9528576173306647e-5 0.0; 0.08000000000015461 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fcb4f10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fcb4f30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fcb4f50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fcb4f70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fcb4f10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fcb4f30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fcb4f50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fcb4f70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([-0.09694714336635002 0.0 … -5.9528576173306647e-5 0.0; 0.08000000000015461 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 73
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 434
Number of accepted steps: 11
Number of rejected steps: 0
Maximum eigenvalue recorded: 0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.0001321358584414439, 0.0003458937026947669, 0.9975014616994561, 6.750419473306668e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278038, 0.001191083810441886, 1.2649225679806428e-5, 0.0009705295452030808, 0.00017944304707474088, 0.0004090721217622654, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574539, 0.0015521442397300178, 1.9378589482441402e-5, 0.0011104081898286836, 0.00020009068501046132, 0.00047057943093203885, 0.9961685794664472, 0.000134687750674596, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.001631408735718184, 2.1071040040975332e-5, 0.0011324527319674627, 0.0002036485175922308, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.001631408735718184, 2.1071040040975332e-5, 0.0011324527319674627, 0.0002036485175922308, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00033545128894105013, 0.00211724156988888, 3.30001697787612e-5, 0.001232925021176425, 0.00022135942746544885, 0.0005660469222731289, 0.9953063345643973, 0.0001876577027419166, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730638, 0.002765507430556316, 5.258638927192399e-5, 0.001328219436146733, 0.0002399947304627218, 0.0006609669332212114, 0.9943552629585674, 0.0002480431625636236, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003771689969503247, 0.0036194995158879673, 8.353961808919765e-5, 0.0014396540498327786, 0.00026209749093517525, 0.0007650109780188411, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812251, 0.004819320441399931, 0.0001344022900738673, 0.0015939327322634532, 0.00029193845475138054, 0.0008872113754603075, 0.9914330082058364, 0.0004216088057963699, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.437735281188717e-5, 9.7390075058826e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.424756068437393e-5, 9.942128953996069e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.4215957799779796e-5, 9.991296286639386e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322908e-5, 9.922590989466716e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322908e-5, 9.922590989466716e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.379838750586672e-5, 1.0581395920837421e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788655e-5, 1.1130268062387155e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673231e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257159e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.381551081310014e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760994e-7, 2.844196776036588e-5, 1.2062132516609154e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.033261424521972e-6, 5.814234704433904e-5, 6.980697836512154e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340444, 4.5122307040134155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.335833844849784e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.1693729013195471e-5, 1.3757948604218316e-5, -0.00011689440668647224, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750283e-7, 5.9117884881075874e-5, 7.454223296072416e-7, 2.6527972723029832e-5, 1.1656122270334626e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.6903635812811615e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526577e-7, 5.9149081640490706e-5, 7.468998468271741e-7, 2.6484526780931863e-5, 1.164695941677897e-5, 1.3837981647446762e-5, -0.00011713038773117553, 4.695770051747409e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.915468563686802e-5, 7.46907691281655e-7, 2.652028943568495e-5, 1.1653159667481756e-5, 1.3824387858169567e-5, -0.00011715038441044713, 4.696456750944647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760994e-7, 2.844196776036588e-5, 1.2062132516609154e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.033261424521972e-6, 5.814234704433904e-5, 6.980697836512154e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340444, 4.5122307040134155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.335833844849784e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.1693729013195471e-5, 1.3757948604218316e-5, -0.00011689440668647224, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750283e-7, 5.9117884881075874e-5, 7.454223296072416e-7, 2.6527972723029832e-5, 1.1656122270334626e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.6903635812811615e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526577e-7, 5.9149081640490706e-5, 7.468998468271741e-7, 2.6484526780931863e-5, 1.164695941677897e-5, 1.3837981647446762e-5, -0.00011713038773117553, 4.695770051747409e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.915468563686802e-5, 7.46907691281655e-7, 2.652028943568495e-5, 1.1653159667481756e-5, 1.3824387858169567e-5, -0.00011715038441044713, 4.696456750944647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725193e-5, 6.244188484067265e-5, 7.469096530800149e-7, 5.689211489718056e-5, 7.117347262923197e-6, 5.954610288730182e-6, -0.00011715017485368015, 5.219268958345474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505835e-5, 6.224050412237632e-5, 7.895866230347866e-7, 5.132817405350146e-5, 6.520575264262392e-6, 6.947186299149548e-6, -0.0001143995768258657, 5.253507349047035e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051428e-5, 6.220383131610451e-5, 8.341723276865514e-7, 4.688426678082347e-5, 6.042018654988589e-6, 7.674396605223633e-6, -0.00011232120010822008, 5.304875615444767e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282244e-6, 6.209775074490821e-5, 9.9338441696569e-7, 3.1640713666816e-5, 4.4037979250871945e-6, 1.024115399818988e-5, -0.00010524984542398186, 5.449107557297118e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175875e-6, 6.192400807651439e-5, 1.01776841761492e-6, 2.8283328301488104e-5, 4.046830833657622e-6, 1.0920584575517384e-5, -0.0001035648445611277, 5.436537404511156e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390441e-6, 6.188798984686704e-5, 1.0238433232401112e-6, 2.7501378047115175e-5, 3.963635479344288e-6, 1.107675869453046e-5, -0.00010317677669661702, 5.434339897910375e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.66102414020475e-6, 6.247690594571882e-5, 1.0192731906927756e-6, 3.201801665142212e-5, 4.437075455102346e-6, 9.945714368397738e-6, -0.00010576904129277542, 5.5330798216463556e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.66102414020475e-6, 6.247690594571882e-5, 1.0192731906927756e-6, 3.201801665142212e-5, 4.437075455102346e-6, 9.945714368397738e-6, -0.00010576904129277542, 5.5330798216463556e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874076e-6, 6.266998026886614e-5, 1.0700320180159662e-6, 2.8923712560966257e-5, 4.101534709033807e-6, 1.0360687173111185e-5, -0.00010454187870652218, 5.600984229402898e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.0286534924187794e-6, 6.298079881956723e-5, 1.1236652349036143e-6, 2.6563763273362845e-5, 3.844067696057174e-6, 1.0612910724855148e-5, -0.00010377172107393946, 5.675168817612227e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526240026e-6, 6.403309190740928e-5, 1.3137303143827408e-6, 1.8165287963298412e-5, 2.932346241991058e-6, 1.162511507334281e-5, -0.00010102022165751396, 5.893800809713664e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.958319505708895e-6, 6.405690427151266e-5, 1.341573690629331e-6, 1.603062769786771e-5, 2.7045361073587e-6, 1.2015165543930614e-5, -0.00010009114084026717, 5.9006530346770535e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946415002e-6, 6.406779907089839e-5, 1.34854826759613e-6, 1.5535410164222756e-5, 2.651654273509934e-6, 1.2103970379972203e-5, -9.988124182049917e-5, 5.902789658941262e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278381e-6, 6.45926873823788e-5, 1.3586268050351647e-6, 1.856923959987112e-5, 2.9690069327848968e-6, 1.1304968594741924e-5, -0.0001017562055196138, 5.980244999080272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435301e-6, 6.46904515477578e-5, 1.3708008355613256e-6, 1.8285994414260055e-5, 2.937776698151287e-6, 1.1317267248391074e-5, -0.00010172772904256202, 5.995148280875786e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988148e-6, 6.503382262129016e-5, 1.4129958249910467e-6, 1.7349139697843936e-5, 2.8344163610915396e-6, 1.1353061159745513e-5, -0.00010165520131587992, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.4189136446719043e-6, 1.722097026318075e-5, 2.8202826330857103e-6, 1.135788022645034e-5, -0.00010164694921842059, 6.053006202835823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251635e-5, 1.4203920273976046e-6, 1.71894594884612e-5, 2.8168064440707323e-6, 1.1358990654822522e-5, -0.00010164518175989666, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385293e-5, 1.4204031918963017e-6, 1.7204089485866193e-5, 2.8183547598207536e-6, 1.1355649533987884e-5, -0.00010165368856272933, 6.054905946590178e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278381e-6, 6.45926873823788e-5, 1.3586268050351647e-6, 1.856923959987112e-5, 2.9690069327848968e-6, 1.1304968594741924e-5, -0.0001017562055196138, 5.980244999080272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435301e-6, 6.46904515477578e-5, 1.3708008355613256e-6, 1.8285994414260055e-5, 2.937776698151287e-6, 1.1317267248391074e-5, -0.00010172772904256202, 5.995148280875786e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988148e-6, 6.503382262129016e-5, 1.4129958249910467e-6, 1.7349139697843936e-5, 2.8344163610915396e-6, 1.1353061159745513e-5, -0.00010165520131587992, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.4189136446719043e-6, 1.722097026318075e-5, 2.8202826330857103e-6, 1.135788022645034e-5, -0.00010164694921842059, 6.053006202835823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251635e-5, 1.4203920273976046e-6, 1.71894594884612e-5, 2.8168064440707323e-6, 1.1358990654822522e-5, -0.00010164518175989666, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385293e-5, 1.4204031918963017e-6, 1.7204089485866193e-5, 2.8183547598207536e-6, 1.1355649533987884e-5, -0.00010165368856272933, 6.054905946590178e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478318e-6, 6.509598189380692e-5, 1.4204072138594642e-6, 1.7201918253106904e-5, 2.8181279063728736e-6, 1.1356210178017701e-5, -0.00010131298269677684, 6.054848622091291e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.822525411650555e-6, 6.565300412974889e-5, 1.4910670830441574e-6, 1.5683669165386018e-5, 2.6491814019029127e-6, 1.139423162305296e-5, -0.00010118725669402161, 6.138628702537229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.2394711407323875e-6, 6.63071172496668e-5, 1.5659586437215602e-6, 1.4679308907307289e-5, 2.5358540913661115e-6, 1.133789946118662e-5, -0.00010140570351857911, 6.219036306063102e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196751136e-6, 6.849262337610668e-5, 1.8286967882947808e-6, 1.0491185041783655e-5, 2.0726004406828087e-6, 1.1405880427298398e-5, -0.0001018147781615163, 6.452515767674865e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461268744e-6, 6.867509742714544e-5, 1.8657125420428302e-6, 8.938851549709197e-6, 1.9062886391372467e-6, 1.165544150805694e-5, -0.0001013252605620554, 6.466865649836874e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.990972776147137e-6, 6.872428819877089e-5, 1.8750199032900138e-6, 8.578561032666306e-6, 1.8676916733869044e-6, 1.1712347466738388e-5, -0.00010121929292951996, 6.4704118785203205e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685357837e-7, 6.911930756100324e-5, 1.8765770274191658e-6, 1.160863183527091e-5, 2.1882182544936813e-6, 1.1011483249851119e-5, -0.00010296813899555608, 6.508425198982191e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685357837e-7, 6.911930756100324e-5, 1.8765770274191658e-6, 1.160863183527091e-5, 2.1882182544936813e-6, 1.1011483249851119e-5, -0.00010296813899555608, 6.508425198982191e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.058183302555115e-6, 7.000873564525538e-5, 1.970904303524131e-6, 1.1041532286134879e-5, 2.1231692746669863e-6, 1.0873529029797572e-5, -0.00010366058158624443, 6.5845277443103834e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967537e-6, 7.097885861059481e-5, 2.0704592740516286e-6, 1.0777110067781253e-5, 2.092003255774123e-6, 1.0703056519773486e-5, -0.00010459488829557597, 6.650576332703898e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.567068715062414e-6, 7.42665945085729e-5, 2.416127135565421e-6, 9.07749702989631e-6, 1.9049283907374528e-6, 1.0383100697667046e-5, -0.00010746100305780117, 6.845686580299625e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0872173256383536e-6, 7.463181445234825e-5, 2.4633773227950197e-6, 8.056894192924525e-6, 1.7959623655459318e-6, 1.0520621419227368e-5, -0.00010742184828529677, 6.865961206817316e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2098668583068608e-6, 7.472513060550692e-5, 2.475269994758558e-6, 7.817653231485596e-6, 1.7704719397470794e-6, 1.055288523446318e-5, -0.00010742185050511393, 6.870572640845731e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639094597e-6, 7.501890369209467e-5, 2.4804316256362364e-6, 1.0117250548009787e-5, 2.016038193870381e-6, 1.0071643240925934e-5, -0.00010875999135519393, 6.873598590747472e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639094597e-6, 7.501890369209467e-5, 2.4804316256362364e-6, 1.0117250548009787e-5, 2.016038193870381e-6, 1.0071643240925934e-5, -0.00010875999135519393, 6.873598590747472e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.350916127004078e-6, 7.621771980862902e-5, 2.6003054236563635e-6, 1.0084374569886884e-5, 2.0127317355982156e-6, 9.897984813096545e-6, -0.00011008948113996184, 6.925448662090737e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.459165519868346e-6, 7.748946979403408e-5, 2.725786228070736e-6, 1.0178529912786336e-5, 2.024993546693057e-6, 9.738033957731167e-6, -0.00011158155733258183, 6.965578373398106e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367191522e-6, 8.188539161621189e-5, 3.1582791369681045e-6, 9.993973383838959e-6, 2.0159182653322937e-6, 9.362936842906594e-6, -0.00011656212391371704, 7.096140231740053e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569799993e-6, 8.245727189395089e-5, 3.216581168921704e-6, 9.528074400217342e-6, 1.967351075842995e-6, 9.396292294082387e-6, -0.00011701868780611336, 7.121334616118043e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395179773e-6, 8.260094116601562e-5, 3.231229751486635e-6, 9.417226560423865e-6, 1.955883797867375e-6, 9.405183596079236e-6, -0.00011713686189657219, 7.1269675851814795e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.830381161886464e-6, 8.274735235952226e-5, 3.238582227760372e-6, 1.0649367147589907e-5, 2.090495177573205e-6, 9.21596701516003e-6, -0.0001178669252317355, 7.094780142243275e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.830381161886464e-6, 8.274735235952226e-5, 3.238582227760372e-6, 1.0649367147589907e-5, 2.090495177573205e-6, 9.21596701516003e-6, -0.0001178669252317355, 7.094780142243275e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9117206686775675e-6, 8.436598051424245e-5, 3.394507424027705e-6, 1.0840251678846595e-5, 2.1173640731864733e-6, 9.092179744014584e-6, -0.00011984550408133568, 7.1234999783402965e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644512943e-6, 8.607459783329977e-5, 3.556590245317646e-6, 1.1072226221372742e-5, 2.1509344845000236e-6, 9.006243060249799e-6, -0.00012197555378489398, 7.142962375702713e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3002272093362595e-6, 9.20717735870943e-5, 4.113973517449837e-6, 1.1603385270423919e-5, 2.2395303355790893e-6, 8.800221369077675e-6, -0.00012936091057029537, 7.231799281334294e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739995075e-6, 9.291085454654509e-5, 4.189225547624128e-6, 1.1466507503526523e-5, 2.228117050731618e-6, 8.78648483809918e-6, -0.00013029477627844068, 7.263864817914633e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622319005e-6, 9.312072151217248e-5, 4.208080051842252e-6, 1.1432529280426272e-5, 2.225373525308424e-6, 8.785043566324764e-6, -0.00013052942369808917, 7.271173999783086e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284626e-6, 9.316528819396454e-5, 4.216088057963699e-6, 1.1991899264389618e-5, 2.290582293991965e-6, 8.795920165475577e-6, -0.0001308742848017021, 7.211502153988255e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284626e-6, 9.316528819396454e-5, 4.216088057963699e-6, 1.1991899264389618e-5, 2.290582293991965e-6, 8.795920165475577e-6, -0.0001308742848017021, 7.211502153988255e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491297e-6, 9.434383308632248e-5, 4.32368176527115e-6, 1.214253707500269e-5, 2.314362581336858e-6, 8.783895269883923e-6, -0.00013236487209522071, 7.2205038539123325e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866155e-6, 9.557757659294195e-5, 4.434896743324188e-6, 1.2297330964808878e-5, 2.339380350639009e-6, 8.78451320426217e-6, -0.00013393197818307968, 7.229256088237335e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.819415672655299e-6, 1.2822021030554624e-5, 2.4255436188421887e-6, 8.806777333013987e-6, -0.00013942390883014602, 7.26636080461808e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417433e-6, 0.00010051367244473632, 4.873084421541451e-6, 1.2890400624448865e-5, 2.436936252856147e-6, 8.807535014863703e-6, -0.00014020174743832768, 7.275266169639457e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032149537e-6, 0.00010066745139688805, 4.886486719294219e-6, 1.2907421745726413e-5, 2.439792468599585e-6, 8.808165993311836e-6, -0.0001403964537676294, 7.277405740594326e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727193e-6, 0.00010066184193750248, 4.886936963906232e-6, 1.29181035086832e-5, 2.4418536352223054e-6, 8.829082701415296e-6, -0.00014040476778800405, 7.267801528547368e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01a90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01ab0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01ad0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01af0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], (30.0, 100.0), [1.0, 1.0, 0.01, 2.3642415197829635e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01a90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01ab0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01ad0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01af0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004546648751243862, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.0001321358584414439, 0.0003458937026947669, 0.9975014616994561, 6.750419473306668e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014166, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203895, 0.9973186002858886, 7.469096530800149e-5, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003784592309278038, 0.001191083810441886, 1.2649225679806428e-5, 0.0009705295452030808, 0.00017944304707474088, 0.0004090721217622654, 0.996756852366504, 0.00010192731906927757, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003441483145574539, 0.0015521442397300178, 1.9378589482441402e-5, 0.0011104081898286836, 0.00020009068501046132, 0.00047057943093203885, 0.9961685794664472, 0.000134687750674596, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.001631408735718184, 2.1071040040975332e-5, 0.0011324527319674627, 0.0002036485175922308, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582136, 0.001631408735718184, 2.1071040040975332e-5, 0.0011324527319674627, 0.0002036485175922308, 0.0004844316606048249, 0.9960441518033951, 0.0001420407213859464, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00033545128894105013, 0.00211724156988888, 3.30001697787612e-5, 0.001232925021176425, 0.00022135942746544885, 0.0005660469222731289, 0.9953063345643973, 0.0001876577027419166, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003494356258730638, 0.002765507430556316, 5.258638927192399e-5, 0.001328219436146733, 0.0002399947304627218, 0.0006609669332212114, 0.9943552629585674, 0.0002480431625636236, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003771689969503247, 0.0036194995158879673, 8.353961808919765e-5, 0.0014396540498327786, 0.00026209749093517525, 0.0007650109780188411, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812251, 0.004819320441399931, 0.0001344022900738673, 0.0015939327322634532, 0.00029193845475138054, 0.0008872113754603075, 0.9914330082058364, 0.0004216088057963699, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.437735281188717e-5, 9.7390075058826e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.424756068437393e-5, 9.942128953996069e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.4215957799779796e-5, 9.991296286639386e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322908e-5, 9.922590989466716e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322908e-5, 9.922590989466716e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.379838750586672e-5, 1.0581395920837421e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788655e-5, 1.1130268062387155e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.7285175888975495e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673231e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.2038774428257159e-5, 1.3325202141868899e-5, -0.00011442804351306558, 4.381551081310014e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4708714122576545e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020452, 4.392631735360229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760994e-7, 2.844196776036588e-5, 1.2062132516609154e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.033261424521972e-6, 5.814234704433904e-5, 6.980697836512154e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340444, 4.5122307040134155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.335833844849784e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.1693729013195471e-5, 1.3757948604218316e-5, -0.00011689440668647224, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750283e-7, 5.9117884881075874e-5, 7.454223296072416e-7, 2.6527972723029832e-5, 1.1656122270334626e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.6903635812811615e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526577e-7, 5.9149081640490706e-5, 7.468998468271741e-7, 2.6484526780931863e-5, 1.164695941677897e-5, 1.3837981647446762e-5, -0.00011713038773117553, 4.695770051747409e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.915468563686802e-5, 7.46907691281655e-7, 2.652028943568495e-5, 1.1653159667481756e-5, 1.3824387858169567e-5, -0.00011715038441044713, 4.696456750944647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385663e-6, 5.769198737796528e-5, 6.750419473306667e-7, 2.888290658807723e-5, 1.2155209293193031e-5, 1.3020848550240784e-5, -0.00011499855446702867, 4.422879150160254e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163616e-6, 5.7906710145164066e-5, 6.862654306760994e-7, 2.844196776036588e-5, 1.2062132516609154e-5, 1.3164312001116899e-5, -0.00011528830739604377, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.033261424521972e-6, 5.814234704433904e-5, 6.980697836512154e-7, 2.803025966403077e-5, 1.1974774182088905e-5, 1.3301876129803057e-5, -0.00011562629608340444, 4.5122307040134155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.335833844849784e-7, 5.8994217213994246e-5, 7.395215862974435e-7, 2.670667248174692e-5, 1.1693729013195471e-5, 1.3757948604218316e-5, -0.00011689440668647224, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750283e-7, 5.9117884881075874e-5, 7.454223296072416e-7, 2.6527972723029832e-5, 1.1656122270334626e-5, 1.382225304661895e-5, -0.00011708249451122272, 4.6903635812811615e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526577e-7, 5.9149081640490706e-5, 7.468998468271741e-7, 2.6484526780931863e-5, 1.164695941677897e-5, 1.3837981647446762e-5, -0.00011713038773117553, 4.695770051747409e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.915468563686802e-5, 7.46907691281655e-7, 2.652028943568495e-5, 1.1653159667481756e-5, 1.3824387858169567e-5, -0.00011715038441044713, 4.696456750944647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725193e-5, 6.244188484067265e-5, 7.469096530800149e-7, 5.689211489718056e-5, 7.117347262923197e-6, 5.954610288730182e-6, -0.00011715017485368015, 5.219268958345474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505835e-5, 6.224050412237632e-5, 7.895866230347866e-7, 5.132817405350146e-5, 6.520575264262392e-6, 6.947186299149548e-6, -0.0001143995768258657, 5.253507349047035e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051428e-5, 6.220383131610451e-5, 8.341723276865514e-7, 4.688426678082347e-5, 6.042018654988589e-6, 7.674396605223633e-6, -0.00011232120010822008, 5.304875615444767e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282244e-6, 6.209775074490821e-5, 9.9338441696569e-7, 3.1640713666816e-5, 4.4037979250871945e-6, 1.024115399818988e-5, -0.00010524984542398186, 5.449107557297118e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175875e-6, 6.192400807651439e-5, 1.01776841761492e-6, 2.8283328301488104e-5, 4.046830833657622e-6, 1.0920584575517384e-5, -0.0001035648445611277, 5.436537404511156e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390441e-6, 6.188798984686704e-5, 1.0238433232401112e-6, 2.7501378047115175e-5, 3.963635479344288e-6, 1.107675869453046e-5, -0.00010317677669661702, 5.434339897910375e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.66102414020475e-6, 6.247690594571882e-5, 1.0192731906927756e-6, 3.201801665142212e-5, 4.437075455102346e-6, 9.945714368397738e-6, -0.00010576904129277542, 5.5330798216463556e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.66102414020475e-6, 6.247690594571882e-5, 1.0192731906927756e-6, 3.201801665142212e-5, 4.437075455102346e-6, 9.945714368397738e-6, -0.00010576904129277542, 5.5330798216463556e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874076e-6, 6.266998026886614e-5, 1.0700320180159662e-6, 2.8923712560966257e-5, 4.101534709033807e-6, 1.0360687173111185e-5, -0.00010454187870652218, 5.600984229402898e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.0286534924187794e-6, 6.298079881956723e-5, 1.1236652349036143e-6, 2.6563763273362845e-5, 3.844067696057174e-6, 1.0612910724855148e-5, -0.00010377172107393946, 5.675168817612227e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.9431506526240026e-6, 6.403309190740928e-5, 1.3137303143827408e-6, 1.8165287963298412e-5, 2.932346241991058e-6, 1.162511507334281e-5, -0.00010102022165751396, 5.893800809713664e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.958319505708895e-6, 6.405690427151266e-5, 1.341573690629331e-6, 1.603062769786771e-5, 2.7045361073587e-6, 1.2015165543930614e-5, -0.00010009114084026717, 5.9006530346770535e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946415002e-6, 6.406779907089839e-5, 1.34854826759613e-6, 1.5535410164222756e-5, 2.651654273509934e-6, 1.2103970379972203e-5, -9.988124182049917e-5, 5.902789658941262e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278381e-6, 6.45926873823788e-5, 1.3586268050351647e-6, 1.856923959987112e-5, 2.9690069327848968e-6, 1.1304968594741924e-5, -0.0001017562055196138, 5.980244999080272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435301e-6, 6.46904515477578e-5, 1.3708008355613256e-6, 1.8285994414260055e-5, 2.937776698151287e-6, 1.1317267248391074e-5, -0.00010172772904256202, 5.995148280875786e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988148e-6, 6.503382262129016e-5, 1.4129958249910467e-6, 1.7349139697843936e-5, 2.8344163610915396e-6, 1.1353061159745513e-5, -0.00010165520131587992, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.4189136446719043e-6, 1.722097026318075e-5, 2.8202826330857103e-6, 1.135788022645034e-5, -0.00010164694921842059, 6.053006202835823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251635e-5, 1.4203920273976046e-6, 1.71894594884612e-5, 2.8168064440707323e-6, 1.1358990654822522e-5, -0.00010164518175989666, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385293e-5, 1.4204031918963017e-6, 1.7204089485866193e-5, 2.8183547598207536e-6, 1.1355649533987884e-5, -0.00010165368856272933, 6.054905946590178e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609837e-6, 6.450030878676596e-5, 1.34687750674596e-6, 1.886129436920002e-5, 3.0011686836434263e-6, 1.1289924663095734e-5, -0.00010179454174536246, 5.965661930572354e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.018568794278381e-6, 6.45926873823788e-5, 1.3586268050351647e-6, 1.856923959987112e-5, 2.9690069327848968e-6, 1.1304968594741924e-5, -0.0001017562055196138, 5.980244999080272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.869709982435301e-6, 6.46904515477578e-5, 1.3708008355613256e-6, 1.8285994414260055e-5, 2.937776698151287e-6, 1.1317267248391074e-5, -0.00010172772904256202, 5.995148280875786e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.374267009988148e-6, 6.503382262129016e-5, 1.4129958249910467e-6, 1.7349139697843936e-5, 2.8344163610915396e-6, 1.1353061159745513e-5, -0.00010165520131587992, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678725e-6, 6.508222234187478e-5, 1.4189136446719043e-6, 1.722097026318075e-5, 2.8202826330857103e-6, 1.135788022645034e-5, -0.00010164694921842059, 6.053006202835823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.289581550560105e-6, 6.509436917251635e-5, 1.4203920273976046e-6, 1.71894594884612e-5, 2.8168064440707323e-6, 1.1358990654822522e-5, -0.00010164518175989666, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385293e-5, 1.4204031918963017e-6, 1.7204089485866193e-5, 2.8183547598207536e-6, 1.1355649533987884e-5, -0.00010165368856272933, 6.054905946590178e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478318e-6, 6.509598189380692e-5, 1.4204072138594642e-6, 1.7201918253106904e-5, 2.8181279063728736e-6, 1.1356210178017701e-5, -0.00010131298269677684, 6.054848622091291e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.822525411650555e-6, 6.565300412974889e-5, 1.4910670830441574e-6, 1.5683669165386018e-5, 2.6491814019029127e-6, 1.139423162305296e-5, -0.00010118725669402161, 6.138628702537229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.2394711407323875e-6, 6.63071172496668e-5, 1.5659586437215602e-6, 1.4679308907307289e-5, 2.5358540913661115e-6, 1.133789946118662e-5, -0.00010140570351857911, 6.219036306063102e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196751136e-6, 6.849262337610668e-5, 1.8286967882947808e-6, 1.0491185041783655e-5, 2.0726004406828087e-6, 1.1405880427298398e-5, -0.0001018147781615163, 6.452515767674865e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461268744e-6, 6.867509742714544e-5, 1.8657125420428302e-6, 8.938851549709197e-6, 1.9062886391372467e-6, 1.165544150805694e-5, -0.0001013252605620554, 6.466865649836874e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.990972776147137e-6, 6.872428819877089e-5, 1.8750199032900138e-6, 8.578561032666306e-6, 1.8676916733869044e-6, 1.1712347466738388e-5, -0.00010121929292951996, 6.4704118785203205e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685357837e-7, 6.911930756100324e-5, 1.8765770274191658e-6, 1.160863183527091e-5, 2.1882182544936813e-6, 1.1011483249851119e-5, -0.00010296813899555608, 6.508425198982191e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685357837e-7, 6.911930756100324e-5, 1.8765770274191658e-6, 1.160863183527091e-5, 2.1882182544936813e-6, 1.1011483249851119e-5, -0.00010296813899555608, 6.508425198982191e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.058183302555115e-6, 7.000873564525538e-5, 1.970904303524131e-6, 1.1041532286134879e-5, 2.1231692746669863e-6, 1.0873529029797572e-5, -0.00010366058158624443, 6.5845277443103834e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967537e-6, 7.097885861059481e-5, 2.0704592740516286e-6, 1.0777110067781253e-5, 2.092003255774123e-6, 1.0703056519773486e-5, -0.00010459488829557597, 6.650576332703898e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.567068715062414e-6, 7.42665945085729e-5, 2.416127135565421e-6, 9.07749702989631e-6, 1.9049283907374528e-6, 1.0383100697667046e-5, -0.00010746100305780117, 6.845686580299625e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0872173256383536e-6, 7.463181445234825e-5, 2.4633773227950197e-6, 8.056894192924525e-6, 1.7959623655459318e-6, 1.0520621419227368e-5, -0.00010742184828529677, 6.865961206817316e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2098668583068608e-6, 7.472513060550692e-5, 2.475269994758558e-6, 7.817653231485596e-6, 1.7704719397470794e-6, 1.055288523446318e-5, -0.00010742185050511393, 6.870572640845731e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639094597e-6, 7.501890369209467e-5, 2.4804316256362364e-6, 1.0117250548009787e-5, 2.016038193870381e-6, 1.0071643240925934e-5, -0.00010875999135519393, 6.873598590747472e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639094597e-6, 7.501890369209467e-5, 2.4804316256362364e-6, 1.0117250548009787e-5, 2.016038193870381e-6, 1.0071643240925934e-5, -0.00010875999135519393, 6.873598590747472e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.350916127004078e-6, 7.621771980862902e-5, 2.6003054236563635e-6, 1.0084374569886884e-5, 2.0127317355982156e-6, 9.897984813096545e-6, -0.00011008948113996184, 6.925448662090737e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.459165519868346e-6, 7.748946979403408e-5, 2.725786228070736e-6, 1.0178529912786336e-5, 2.024993546693057e-6, 9.738033957731167e-6, -0.00011158155733258183, 6.965578373398106e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.0494844367191522e-6, 8.188539161621189e-5, 3.1582791369681045e-6, 9.993973383838959e-6, 2.0159182653322937e-6, 9.362936842906594e-6, -0.00011656212391371704, 7.096140231740053e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569799993e-6, 8.245727189395089e-5, 3.216581168921704e-6, 9.528074400217342e-6, 1.967351075842995e-6, 9.396292294082387e-6, -0.00011701868780611336, 7.121334616118043e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3994294395179773e-6, 8.260094116601562e-5, 3.231229751486635e-6, 9.417226560423865e-6, 1.955883797867375e-6, 9.405183596079236e-6, -0.00011713686189657219, 7.1269675851814795e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.830381161886464e-6, 8.274735235952226e-5, 3.238582227760372e-6, 1.0649367147589907e-5, 2.090495177573205e-6, 9.21596701516003e-6, -0.0001178669252317355, 7.094780142243275e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.830381161886464e-6, 8.274735235952226e-5, 3.238582227760372e-6, 1.0649367147589907e-5, 2.090495177573205e-6, 9.21596701516003e-6, -0.0001178669252317355, 7.094780142243275e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9117206686775675e-6, 8.436598051424245e-5, 3.394507424027705e-6, 1.0840251678846595e-5, 2.1173640731864733e-6, 9.092179744014584e-6, -0.00011984550408133568, 7.1234999783402965e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644512943e-6, 8.607459783329977e-5, 3.556590245317646e-6, 1.1072226221372742e-5, 2.1509344845000236e-6, 9.006243060249799e-6, -0.00012197555378489398, 7.142962375702713e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3002272093362595e-6, 9.20717735870943e-5, 4.113973517449837e-6, 1.1603385270423919e-5, 2.2395303355790893e-6, 8.800221369077675e-6, -0.00012936091057029537, 7.231799281334294e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739995075e-6, 9.291085454654509e-5, 4.189225547624128e-6, 1.1466507503526523e-5, 2.228117050731618e-6, 8.78648483809918e-6, -0.00013029477627844068, 7.263864817914633e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622319005e-6, 9.312072151217248e-5, 4.208080051842252e-6, 1.1432529280426272e-5, 2.225373525308424e-6, 8.785043566324764e-6, -0.00013052942369808917, 7.271173999783086e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719284626e-6, 9.316528819396454e-5, 4.216088057963699e-6, 1.1991899264389618e-5, 2.290582293991965e-6, 8.795920165475577e-6, -0.0001308742848017021, 7.211502153988255e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719284626e-6, 9.316528819396454e-5, 4.216088057963699e-6, 1.1991899264389618e-5, 2.290582293991965e-6, 8.795920165475577e-6, -0.0001308742848017021, 7.211502153988255e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491297e-6, 9.434383308632248e-5, 4.32368176527115e-6, 1.214253707500269e-5, 2.314362581336858e-6, 8.783895269883923e-6, -0.00013236487209522071, 7.2205038539123325e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866155e-6, 9.557757659294195e-5, 4.434896743324188e-6, 1.2297330964808878e-5, 2.339380350639009e-6, 8.78451320426217e-6, -0.00013393197818307968, 7.229256088237335e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.819415672655299e-6, 1.2822021030554624e-5, 2.4255436188421887e-6, 8.806777333013987e-6, -0.00013942390883014602, 7.26636080461808e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417433e-6, 0.00010051367244473632, 4.873084421541451e-6, 1.2890400624448865e-5, 2.436936252856147e-6, 8.807535014863703e-6, -0.00014020174743832768, 7.275266169639457e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032149537e-6, 0.00010066745139688805, 4.886486719294219e-6, 1.2907421745726413e-5, 2.439792468599585e-6, 8.808165993311836e-6, -0.0001403964537676294, 7.277405740594326e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727193e-6, 0.00010066184193750248, 4.886936963906232e-6, 1.29181035086832e-5, 2.4418536352223054e-6, 8.829082701415296e-6, -0.00014040476778800405, 7.267801528547368e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812251, 0.004819320441399931, 0.0001344022900738673, 0.0015939327322634532, 0.00029193845475138054, 0.0008872113754603075, 0.9914330082058364, 0.0004216088057963699, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.2030046719284626e-6, 9.316528819396454e-5, 4.216088057963699e-6, 1.1991899264389618e-5, 2.290582293991965e-6, 8.795920165475577e-6, -0.0001308742848017021, 7.211502153988255e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.236058463491297e-6, 9.434383308632248e-5, 4.32368176527115e-6, 1.214253707500269e-5, 2.314362581336858e-6, 8.783895269883923e-6, -0.00013236487209522071, 7.2205038539123325e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.269024238866155e-6, 9.557757659294195e-5, 4.434896743324188e-6, 1.2297330964808878e-5, 2.339380350639009e-6, 8.78451320426217e-6, -0.00013393197818307968, 7.229256088237335e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966733493e-6, 9.989873927378849e-5, 4.819415672655299e-6, 1.2822021030554624e-5, 2.4255436188421887e-6, 8.806777333013987e-6, -0.00013942390883014602, 7.26636080461808e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102417433e-6, 0.00010051367244473632, 4.873084421541451e-6, 1.2890400624448865e-5, 2.436936252856147e-6, 8.807535014863703e-6, -0.00014020174743832768, 7.275266169639457e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032149537e-6, 0.00010066745139688805, 4.886486719294219e-6, 1.2907421745726413e-5, 2.439792468599585e-6, 8.808165993311836e-6, -0.0001403964537676294, 7.277405740594326e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399147512727193e-6, 0.00010066184193750248, 4.886936963906232e-6, 1.29181035086832e-5, 2.4418536352223054e-6, 8.829082701415296e-6, -0.00014040476778800405, 7.267801528547368e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.6370921498952994e-10, 5.4767178025477035e-11, 1.576620669677208e-11, 5.000778317477956e-10, 6.044700623159357e-11, 5.2152801425629613e-11, -3.371671593311984e-10, -8.233464981865552e-11, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00044570959125509466, 0.0056139262119402275, 0.00017158342383826077, 0.001696121123472897, 0.00031135579301610144, 0.0009596350979667641, 0.990320471606569, 0.0004812138186045837, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-0.000181968977049918, 8.153353707713387e-6, 1.3400066169586864e-5, 0.00018457347724258713, 4.6007145608088075e-5, 2.6490728611181045e-5, -3.397379536385472e-7, -5.530664233903726e-5, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004185943610812251, 0.004819320441399931, 0.0001344022900738673, 0.0015939327322634532, 0.00029193845475138054, 0.0008872113754603075, 0.9914330082058364, 0.0004216088057963699, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.150412390907204 0.0 … -9.235790925466825e-5 0.0; -0.10789095423395102 -1.0 … -9.964582960538813e-6 0.0; … ; -0.0 -0.0 … -1.0 0.0; -0.0 -0.0 … -0.0 -1.0], [2.99893337e-315 1.0e-322 … 1.23075755877e-312 0.0; 2.0e-323 2.998934874e-315 … 0.0 1.39761468e-315; … ; 0.0 0.0 … 1.39761448e-315 NaN; 0.0 3.133108914e-315 … 1.0e-323 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01a90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01ab0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01ad0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01af0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004185943610812251, 0.004819320441399931, 0.0001344022900738673, 0.0015939327322634532, 0.00029193845475138054, 0.0008872113754603075, 0.9914330082058364, 0.0004216088057963699, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 2.3642415197829635e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01a90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01ab0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01ad0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01af0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 30.0, [1.0, 1.0, 0.01, 2.3642415197829635e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([2.99893337e-315 1.0e-322 … 1.23075755877e-312 0.0; 2.0e-323 2.998934874e-315 … 0.0 1.39761468e-315; … ; 0.0 0.0 … 1.39761448e-315 NaN; 0.0 3.133108914e-315 … 1.0e-323 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [4556921878115931675, 4573241430106102965, 4550646557332566113, 4565525900371185134, 4554425341955588973, 4562074079246224226, 4607093936237214638, 4557646627045447928, 4596698038867498893, 4596373779694328218 … 4572414629676717179, 4575765307799480828, 4579800533065604792, 4590429028186199163, 4581421828931458171, 4581421828931458171, 4581421828931458171, 4576918229304087675, 4582862980812216730, 4582862980812216730]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 30.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 77
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 362
Number of accepted steps: 12
Number of rejected steps: 0
Maximum eigenvalue recorded: 0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01c70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01c90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01cb0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01cd0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01c70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01c90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01cb0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01cd0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.399147512727193e-6, 0.00010066184193750248, 4.886936963906232e-6, 1.29181035086832e-5, -0.00011400067329213275, 0.00012527160962877036, -0.00014040476778800405, 7.267801528547368e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.399147512727193e-6, 0.00010066184193750248, 4.886936963906232e-6, 1.29181035086832e-5, -0.00011400067329213275, 0.00012527160962877036, -0.00014040476778800405, 7.267801528547368e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [4.891920005e-315 0.0 … 4.891937396e-315 0.0; 1.0e-323 4.80283471e-315 … 1.0e-323 4.267626007e-315; … ; 4.891920795e-315 0.0 … 4.891938187e-315 0.0; 1.0e-323 4.802835977e-315 … 1.0e-323 4.2676264e-315], [4.39086487e-315 0.0 … 4.39086487e-315 0.0; 1.69759663287e-313 2.87070405e-315 … 1.0e-323 3.98731233e-315; … ; 4.39086487e-315 0.0 … 4.39086487e-315 0.0; 1.2731974747e-313 3.98729956e-315 … 1.0e-323 3.987315847e-315], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01c70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01c90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01cb0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01cd0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004491987550009077, 0.0057171350574016155, 0.0001765767793412446, 0.0017093699442555187, 0.00031386125856429933, 0.0009687190258563625, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0440, Ptr{Nothing} @0x00007fa92fd01c70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63c0660, Ptr{Nothing} @0x00007fa92fd01c90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0880, Ptr{Nothing} @0x00007fa92fd01cb0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63c0ab0, Ptr{Nothing} @0x00007fa92fd01cd0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([4.39086487e-315 0.0 … 4.39086487e-315 0.0; 1.69759663287e-313 2.87070405e-315 … 1.0e-323 3.98731233e-315; … ; 4.39086487e-315 0.0 … 4.39086487e-315 0.0; 1.2731974747e-313 3.98729956e-315 … 1.0e-323 3.987315847e-315], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [-4700855489015087568, 4544431541064519876, 4519314438327954701, 4535694658093903624, 4523761422422712903, 4532822790100793898, -4676243521848313831, 4528762207710230410, -9223372036854775808, -9223372036854775808 … -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808, -9223372036854775808]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 0
Number of rejected steps: 0, [1], SciMLBase.ReturnCode.Success)), :MAXTIME_REACHED)b.ii
Let’s say our goal is to get the reproduction number R0 below 1.0, at some point within the next 100 days. Are there interventions that will allow us to meet our goal? If there are multiple options, which single intervention would have the greatest impact on R0 and let us meet our goal with minimal change to the intervention parameter? Assume that the intervention will be implemented after one month (t = day 30), and will stay constant after that, over the remaining time period (i.e. the following 70 days).
In order to do this scenario a modeling decision for how to represent R0 in terms of the states was required. This needed expert information, which we called out for and documented the results in https://github.com/ChrisRackauckas/ASKEMEvaluationStaging/issues/20. This led us to a definition of the instantanious R0 as defined in https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7325187/. Thus using this definition of R0 and our intervention functionality designed to find parameters to keep a value below a threshold, we were able to solve for the intervention.
Another modeling decision required here was the definition of intervention parameters, which we decided to use the same parameters as b.i.
R0 = Infected # how is R0 defined from the states?\[ \begin{equation} \mathrm{Infected}\left( t \right) \end{equation} \]
intervention_parameters = [theta] # Need to figure out what these should be
[p => EasyModelAnalysis.optimal_parameter_intervention_for_threshold(prob, R0, 1.0,
p -
ModelingToolkit.defaults(sys)[p],
[p], [0.0],
3 .* [
ModelingToolkit.defaults(sys)[p],
],
(30.0, 100.0);
maxtime = 60)
for p in intervention_parameters]1-element Vector{Pair{Num, Tuple{Dict{Num, Float64}, Tuple{ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}, ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}}, Symbol}}}:
theta => (Dict(theta => 1.8577879818304316e-17), (ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], nothing, nothing, [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9672ff1b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9672ff1d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9672ff1f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9672ff210, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], (0.0, 30.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9672ff1b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9672ff1d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9672ff1f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9672ff210, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.8267939901340234e-6, 7.548349314301234e-8, 3.972742408182048e-12, 6.204996766975698e-7, 2.2926107471766297e-7, 8.860239412027163e-8, 0.9999951740898583, 1.9322030453387534e-9, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [7.480275114975006e-6, 6.362399105983564e-7, 4.6465678462207713e-10, 2.2190247195137503e-6, 1.141251253267001e-6, 9.836751407435457e-7, 0.9999875024895241, 5.324634296694997e-8, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.0992272590599972e-5, 1.1908307573145753e-6, 1.5154729836298532e-9, 3.5593817331679762e-6, 1.8085177145538103e-6, 1.9913293084360753e-6, 0.9999803449423558, 1.2787673005995482e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [1.8610348128968713e-5, 4.040009208879538e-6, 1.3726333585323035e-8, 8.757440649621397e-6, 3.993260066391428e-6, 7.607896089014415e-6, 0.9999563149242606, 6.790619257913193e-7, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.7569462106423824e-5, 1.1681712917634034e-5, 7.908944400438965e-8, 1.9513009925659064e-5, 8.279809057320134e-6, 2.1982275103110848e-5, 0.999898314252307, 2.5970558017403387e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.171 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [3.854540226043962e-5, 1.2085168723552606e-5, 8.330964921257237e-8, 2.0048413765385193e-5, 8.496417458799296e-6, 2.2714763333187715e-5, 0.999895338754793, 2.70443667931599e-6, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0001204349488133012, 4.035635744292145e-5, 4.3990046055544926e-7, 5.1445498953866775e-5, 2.5576909271731578e-5, 7.060365468624467e-5, 0.9996808005111493, 1.0358885884931657e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.422, 0.143 … 0.0057, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125], [0.0002484819748064881, 8.395418953105131e-5, 1.0441239849508682e-6, 0.00010385013573550532, 5.258365425427676e-5, 0.00014340629757688317, 0.999344683649015, 2.201264175868538e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005320001448761725, 0.00030867882071223244, 2.721617736808061e-6, 0.00035636916222280213, 4.1106988774674946e-5, 0.00023238210993133194, 0.9984907795878738, 3.597823453493085e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.36, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [0.0, 0.5367984098965104, 2.7883046034770675, 3.9999999999999996, 3.9999999999999996, 7.452732817565575, 11.84078920198151, 11.999999999999998, 11.999999999999998, 18.10179439889311, 21.999999999999996, 21.999999999999996, 27.880048927181118, 27.999999999999996, 27.999999999999996, 30.0], [[[3.33333333e-6, 0.0, 0.0, 3.33333333e-7, 1.66666666e-8, 3.33333333e-8, 0.9999963, 0.0, 0.57, 0.171 … 0.011, 0.017, 0.027, 0.034, 0.034, 0.017, 0.017, 0.017, 0.125, 0.125]], [[8.116262594555736e-7, 1.255166665403e-7, 0.0, 5.16999999483e-7, 4.0991666627700003e-7, 4.6383333268399994e-8, -1.9116262583555736e-6, 1.1833333313e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.451506278492654e-7, 1.3009289017483877e-7, 1.0226904354972027e-12, 5.218903401218858e-7, 4.043368412597134e-7, 6.493550386312749e-8, -1.968298288440199e-6, 1.8910624809331e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.807532423176101e-7, 1.3508832313223307e-7, 3.3516588968644088e-12, 5.278248967779075e-7, 3.9974534867750113e-7, 8.365411310016955e-8, -2.029759729258707e-6, 2.690453594388836e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.008595577476248e-6, 1.5334975184401267e-7, 1.6848689054386487e-11, 5.510717242856526e-7, 3.865855335345325e-7, 1.4834974602914445e-7, -2.253644101344717e-6, 5.674919486072379e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0276964434069617e-6, 1.5610278327510123e-7, 2.00005675587e-11, 5.547504601861783e-7, 3.849209748525142e-7, 1.5776503488953463e-7, -2.2873852433690652e-6, 6.129546191216426e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0324687956795725e-6, 1.5679392481369017e-7, 2.0798686954378614e-11, 5.556861157270884e-7, 3.845362755043237e-7, 1.6009504782938403e-7, -2.2958452576124047e-6, 6.24429937139178e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.03076266169892e-6, 1.566445110942898e-7, 1.9322030453387536e-11, 5.557223237180044e-7, 3.854985135060994e-7, 1.5871981296615721e-7, -2.293604678443148e-6, 6.237533429223458e-9, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.187004033193658e-6, 1.7958964786004538e-7, 4.1932621142572985e-11, 5.875856192734583e-7, 3.756091507892601e-7, 2.3321258923392168e-7, -2.5731484812422014e-6, 1.0105508270715283e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.373897112342623e-6, 2.0895738945101364e-7, 9.446164046318175e-11, 6.367922626112395e-7, 3.8318979041686505e-7, 3.077801962009529e-7, -2.926118161389624e-6, 1.5406948726466837e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2384139852330487e-6, 3.443611940385821e-7, 4.924826268070137e-10, 8.73530343406949e-7, 4.2368469084340284e-7, 6.442755276520781e-7, -4.564433719262399e-6, 3.967549546153123e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.427139232088914e-6, 3.7170797990971917e-7, 6.115902501270377e-10, 9.171617904496675e-7, 4.141436901805141e-7, 7.296691047654473e-7, -4.904623929096266e-6, 4.41905414518768e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.473740532781335e-6, 3.785176521053391e-7, 6.40954579968218e-10, 9.282141659644414e-7, 4.123197813881157e-7, 7.503737250679031e-7, -4.9891336445664455e-6, 4.532683267934279e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.3508460670810195e-6, 3.6680513090123517e-7, 5.324634296694997e-10, 9.263021142580398e-7, 4.7282763179874044e-7, 6.575005987085601e-7, -4.819336855022772e-6, 4.4522848845507096e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5063642358400943e-6, 3.924381550903947e-7, 6.193199205572613e-10, 9.759922099775909e-7, 4.927964341764966e-7, 7.086663308074129e-7, -5.126196325941365e-6, 4.9319640128818146e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.6860351381780272e-6, 4.2222814580649986e-7, 7.283727921116156e-10, 1.0348241395970687e-6, 5.180001429426811e-7, 7.66042317701255e-7, -5.482770574404197e-6, 5.491231738655332e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4005710000122497e-6, 5.408733144791431e-7, 1.1975333225844925e-9, 1.2717912167518277e-6, 6.217402378915803e-7, 9.9096176179082e-7, -6.9042761639047465e-6, 7.714109965654112e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.523415355833438e-6, 5.611907782245913e-7, 1.2853410303846399e-9, 1.3125555157371605e-6, 6.391962932843116e-7, 1.029762206092571e-6, -7.148320884581603e-6, 8.091539437914582e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5541571471531396e-6, 5.66280859955432e-7, 1.3073595101838196e-9, 1.3227886399134537e-6, 6.436207151115146e-7, 1.0394298668860611e-6, -7.209446698803732e-6, 8.186211027394716e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.5238033551263142e-6, 5.616195175217117e-7, 1.278945731152649e-9, 1.3141294092327654e-6, 6.423442031445474e-7, 1.0277659161667026e-6, -7.152026651469185e-6, 8.108530454599061e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[1.5582537526114919e-6, 5.615275508099575e-7, 1.2787673005995483e-9, 1.313736917418887e-6, 6.415843994307033e-7, 1.0282642991742732e-6, -5.185703707509483e-6, 8.105802076357003e-8, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.746986279903513e-6, 6.323552152210123e-7, 1.7293607189513852e-9, 1.3457435183176261e-6, 6.054182178344505e-7, 1.2267177447093025e-6, -5.6602880603005994e-6, 1.0133772359574362e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.9512664663145588e-6, 7.17670899382779e-7, 2.4288526035228865e-9, 1.4102322679931962e-6, 6.12421903995393e-7, 1.4103121540414717e-6, -6.231439951928502e-6, 1.2710740759757967e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8898855120688075e-6, 1.0773429019441172e-6, 6.280586754781201e-9, 1.6769024968226457e-6, 5.176135237305434e-7, 2.301658002579788e-6, -8.701148515095987e-6, 2.3146549119530385e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.127849959668875e-6, 1.1430969497437044e-6, 7.2322490729862315e-9, 1.6937404421767253e-6, 3.781203275541865e-7, 2.5876889683582306e-6, -9.184965935248978e-6, 2.472370386742703e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.1865835067136157e-6, 1.1595020994411966e-6, 7.469305023469182e-9, 1.6985403863393668e-6, 3.446318415758109e-7, 2.6575884118048907e-6, -9.305547559470235e-6, 2.5123200857188577e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.943116690409531e-6, 1.1392685258524155e-6, 6.790619257913193e-9, 1.7899364667638481e-6, 7.090231892325608e-7, 2.24143213791726e-6, -9.084531572969207e-6, 2.5496394353567783e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.293289902784405e-6, 1.291454946103897e-6, 8.591881075879622e-9, 1.944423968270413e-6, 7.660607536403319e-7, 2.5156629767653598e-6, -1.0120855463523856e-5, 3.013710348835702e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.729245659475606e-6, 1.483078410969045e-6, 1.1132245221091455e-8, 2.1556983424276954e-6, 8.553002608401946e-7, 2.84022658570411e-6, -1.1434383549202784e-5, 3.5970204456504115e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.766799276605013e-6, 2.358237620619037e-6, 2.3958564353875082e-8, 3.12801027531477e-6, 1.1980130193393016e-6, 4.391376877033931e-6, -1.7485011243460294e-5, 6.186156101943668e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209610059157907e-6, 2.5352023675964168e-6, 2.6803326118768362e-8, 3.308629409928688e-6, 1.2111580571424766e-6, 4.765284012004729e-6, -1.872461020553312e-5, 6.679229735841363e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.3198174769584384e-6, 2.579210112847519e-6, 2.7512341648519405e-8, 3.353780376068283e-6, 1.2143826172516833e-6, 4.8581547143275936e-6, -1.903307391710395e-5, 6.802162780019141e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.050783058594168e-6, 2.4994094284477307e-6, 2.5970558017403387e-8, 3.3218094420186833e-6, 1.342860095088324e-6, 4.543715296436275e-6, -1.8448705553714032e-5, 6.64157675111446e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.075994994961715e-6, 2.510432376545837e-6, 2.614080114568139e-8, 3.3347929406574674e-6, 1.3483068264927469e-6, 4.562004495511364e-6, -1.8525100275549464e-5, 6.674278402346496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.102206014277642e-6, 2.5218915373341452e-6, 2.631807799290066e-8, 3.3482996634053077e-6, 1.3539732157434374e-6, 4.581013316534214e-6, -1.860452799360297e-5, 6.70826168315325e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.193354633290115e-6, 2.5617388347587615e-6, 2.6935431811459374e-8, 3.3952949521919002e-6, 1.3736886706832217e-6, 4.647102111393788e-6, -1.888075398580254e-5, 6.826393516732941e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.206194661086134e-6, 2.5673517370449668e-6, 2.7022535698986795e-8, 3.4019189504705534e-6, 1.3764673637271864e-6, 4.656410007146118e-6, -1.8919667958698074e-5, 6.843027035241303e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.2094037344240454e-6, 2.5687545453144843e-6, 2.7044310936470746e-8, 3.4035746470142437e-6, 1.3771619190452516e-6, 4.658736195755671e-6, -1.8929393747360462e-5, 6.847183948702944e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.209396635723749e-6, 2.5687516243281276e-6, 2.7044269407436453e-8, 3.403572079581678e-6, 1.3771615089349468e-6, 4.6587298722207875e-6, -1.8929373630903114e-5, 6.847176407063898e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[7.288695973743017e-6, 2.5687552418901944e-6, 2.70443667931599e-8, 2.3242947345466197e-6, 1.377126211741238e-6, 4.658773011227428e-6, -1.8929407456395783e-5, 6.847179164541246e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [8.57183067109999e-6, 3.0020792981467727e-6, 3.377095958854078e-8, 2.9851680439618174e-6, 1.72425419437586e-6, 5.244733265381158e-6, -2.2374963023902694e-5, 8.131265913485566e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0426557728318656e-5, 3.6211015830405655e-6, 4.333502199558329e-8, 3.827072087020971e-6, 2.1227040658102605e-6, 6.2288438745121365e-6, -2.7252506219280926e-5, 9.828918585827496e-7, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.0507065702126118e-5, 7.108594475480618e-6, 9.418610807463671e-8, 8.559707530828461e-6, 4.951968555383839e-6, 1.1255836749565911e-5, -5.4422983935808204e-5, 1.945624814348613e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.2675294914287014e-5, 7.940028473118547e-6, 1.0519183692206417e-7, 9.81293701047074e-6, 6.083698479450015e-6, 1.1977530448042833e-5, -6.078706818680297e-5, 2.1923870245117607e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.320807510859951e-5, 8.14645815124185e-6, 1.0792864885936352e-7, 1.012438189052645e-5, 6.373910187453528e-6, 1.2148758949444338e-5, -6.236298568933039e-5, 2.2534727532053545e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.241852148549689e-5, 7.655105871413147e-6, 1.0358885884931656e-7, 9.04236334663725e-6, 4.69572034661136e-6, 1.2813159902850995e-5, -5.878987602711384e-5, 2.0614162152548882e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.5020429035561182e-5, 8.535245792103095e-6, 1.1652653587011244e-7, 1.0152050569308425e-5, 5.260914548576713e-6, 1.4262080861673284e-5, -6.5640957694043e-5, 2.293710350950179e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8339341853896852e-5, 9.657695064935518e-6, 1.3290388309178042e-7, 1.1552042960165556e-5, 5.969645364003808e-6, 1.6128250850860817e-5, -7.436862296231932e-5, 2.588742985364992e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.366230985851072e-5, 1.485337832638067e-5, 2.0799711765976038e-7, 1.800791249709411e-5, 9.278927638814198e-6, 2.4747541590007513e-5, -0.00011471373346772384, 3.95566643925687e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.6782071322939064e-5, 1.5917450287297683e-5, 2.2320270698082012e-7, 1.933553161844787e-5, 9.985691409288702e-6, 2.6482486646397328e-5, -0.00012296359866508273, 4.23716467373127e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.7558131534422915e-5, 1.6182182586355827e-5, 2.269864690850881e-7, 1.9665572164299957e-5, 1.016137134941355e-5, 2.6914434750141913e-5, -0.00012501583475607272, 4.3071559023534604e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.615031607085706e-5, 1.5690027523072092e-5, 2.2019651157570513e-7, 1.9025406504616597e-5, 9.762131366924458e-6, 2.619240590811421e-5, -0.0001212131886900594, 4.172704804899284e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.728033413251623e-5, 2.535005438305001e-5, 2.201264175868538e-7, 3.0236565474817026e-5, -1.2374739941273001e-5, 1.8450438820883596e-5, -0.00010114020165778368, 1.9774223702029562e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.878530414177643e-5, 2.8789704111972098e-5, 2.388464354481121e-7, 3.3823587560478e-5, -6.535636918623126e-6, 1.451846602158009e-5, -0.00011171543164574672, 2.0951602931151128e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.293546856116083e-5, 3.2761871025516864e-5, 2.604703688279693e-7, 3.758567012566038e-5, -4.97556883095252e-6, 1.5226517433533714e-5, -0.00012598051452646393, 2.1860858427166926e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.9617080252304045e-5, 5.322917427127282e-5, 3.342689624605249e-7, 6.021068554845434e-5, 3.459217986037841e-5, -1.433311037519958e-5, -0.00018699683627916512, 3.3465577594945555e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [4.10540491195444e-5, 5.915228017457062e-5, 3.3725947827424974e-7, 6.883647555952892e-5, 6.859680762092858e-5, -4.631331068083432e-5, -0.00019573713628027333, 4.073575008260859e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.88336700253855e-5, 6.064175118453597e-5, 3.37811513471578e-7, 7.101913959298414e-5, 7.729147812876961e-5, -5.450514785177295e-5, -0.00019787803673594013, 4.259334142566301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.565527238741101e-5, 5.3879232012977376e-5, 3.597823453493085e-7, 5.7901193443929745e-5, 1.8096373710185857e-6, 1.993101683317706e-5, -0.00020237930962058734, 2.8431752267242456e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.579887079749638e-5, 5.4007747762241246e-5, 3.6033142283834733e-7, 5.8025481304221034e-5, 1.8389080382222996e-6, 1.9969684019189087e-5, -0.00020284876929887058, 2.8477459546621967e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.5947781079623e-5, 5.4140851599111304e-5, 3.608993917420397e-7, 5.815420029658588e-5, 1.8688177602222581e-6, 2.0010109304676685e-5, -0.0002033351458598296, 2.852486427868425e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.646435047490874e-5, 5.4602135903773156e-5, 3.6286557804730803e-7, 5.8600276914404806e-5, 1.9713209955257988e-6, 2.0151270915407946e-5, -0.00020502115670857304, 2.8689359265052893e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.65368947554453e-5, 5.4666853114230926e-5, 3.6314108709385007e-7, 5.866286049161815e-5, 1.985542206934688e-6, 2.0171220948483522e-5, -0.00020525775991617808, 2.871247312371631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655501904556753e-5, 5.468301839861868e-5, 3.6320989070631145e-7, 5.8678492648494566e-5, 1.989085675512484e-6, 2.0176212350948702e-5, -0.00020531686278872787, 2.871824778879588e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.655506771884915e-5, 5.468302302123149e-5, 3.6320989484982976e-7, 5.867849019981577e-5, 1.988993282923273e-6, 2.017630841741455e-5, -0.00020531691670957455, 2.871824174490489e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-1.8024570559341688e-5, 5.468302608430703e-5, 3.632098811698145e-7, 5.867849634843316e-5, 1.9890300327515186e-6, 2.0176272030410416e-5, -0.00012073728868994838, 2.8718248722181285e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7557474026861188e-5, 5.467697246855398e-5, 3.724571572583569e-7, 5.6884918705423734e-5, 1.538071836731635e-6, 2.0848401407204277e-5, -0.00011971277991036111, 2.949432362050314e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.712752843183468e-5, 5.467875295972577e-5, 3.825123320653215e-7, 5.51418311042747e-5, 1.2035843526034413e-6, 2.1373801404859907e-5, -0.00011868534179834227, 3.0323880766478094e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.565451965027091e-5, 5.468360572109474e-5, 4.1904039485667e-7, 4.9332119271758256e-5, -2.541907288901761e-8, 2.3184851428005963e-5, -0.00011525371408727618, 3.314035994720475e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5401841044514544e-5, 5.4675470467052246e-5, 4.245151977846633e-7, 4.851793139530319e-5, -3.678829542951698e-7, 2.3606577526288705e-5, -0.00011480304605316233, 3.348275465543238e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.534088017166808e-5, 5.467379006654168e-5, 4.258904942889212e-7, 4.831778872869806e-5, -4.473177423632059e-7, 2.3704730163623373e-5, -0.00011469098931069142, 3.356987771570674e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.2382270537597508e-7, 2.3094833947770018e-5, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-5.390961837841079e-10, 9.572844952319827e-11, -1.2202406872160754e-12, 2.4494367647022593e-10, 1.825142725703532e-9, -1.8512669504982965e-9, 1.8701730533659872e-10, 3.8751217926882333e-11, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0005099821840077465, 0.0004124041986338562, 3.4583716924347714e-6, 0.0004593135827010452, 4.313325575975515e-5, 0.0002733259261631827, 0.9982565817891844, 4.1817358520308544e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [-0.0003500785030051232, 6.719860876612745e-5, -1.2159215845920634e-6, 0.00016660604101897576, 0.0017496031168409653, -0.0014480739075501772, 1.871171644922294e-7, 3.716927369484967e-5, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 3.816929752938375e180; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 3.878731072959323e-80], [6.93533300796557e-310 6.93533300067514e-310 … 6.9353329999202e-310 6.9353330004384e-310; 6.93533300906437e-310 6.9353330062992e-310 … 6.93533299979175e-310 6.9353330007135e-310; … ; 6.9353330101521e-310 6.93533299836765e-310 … 6.93533299887476e-310 6.9353330070565e-310; 6.93533301126474e-310 6.93533300129885e-310 … 6.9353330079545e-310 6.9353330019834e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9672ff1b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9672ff1d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9672ff1f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9672ff210, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0005399294134213621, 0.0003151897879942283, 2.7649792985969006e-6, 0.0003633609758984632, 4.1334772786805035e-5, 0.0002347875579388125, 0.9984663281912075, 3.632098811698145e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9672ff1b0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9672ff1d0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9672ff1f0, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9672ff210, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 0.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.93533300796557e-310 6.93533300067514e-310 … 6.9353329999202e-310 6.9353330004384e-310; 6.93533300906437e-310 6.9353330062992e-310 … 6.93533299979175e-310 6.9353330007135e-310; … ; 6.9353330101521e-310 6.93533299836765e-310 … 6.93533299887476e-310 6.9353330070565e-310; 6.93533301126474e-310 6.93533300129885e-310 … 6.9353330079545e-310 6.9353330019834e-310], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 0.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-11, 11, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 73
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 434
Number of accepted steps: 11
Number of rejected steps: 0
Maximum eigenvalue recorded: 0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000454664875124386, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144387, 0.00034589370269476696, 0.9975014616994561, 6.750419473306665e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014167, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203906, 0.9973186002858886, 7.469096530800148e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014167, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203906, 0.9973186002858886, 7.469096530800148e-5, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037845923092780405, 0.0011910838104418862, 1.2649225679806418e-5, 0.0009705295452030808, 0.00017944304707474086, 0.00040907212176226554, 0.996756852366504, 0.00010192731906927758, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.000344148314557454, 0.0015521442397300183, 1.93785894824414e-5, 0.001110408189828684, 0.0002000906850104613, 0.0004705794309320388, 0.9961685794664472, 0.00013468775067459603, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582138, 0.0016314087357181847, 2.1071040040975332e-5, 0.001132452731967463, 0.00020364851759223078, 0.00048443166060482487, 0.9960441518033951, 0.00014204072138594644, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582138, 0.0016314087357181847, 2.1071040040975332e-5, 0.001132452731967463, 0.00020364851759223078, 0.00048443166060482487, 0.9960441518033951, 0.00014204072138594644, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003354512889410499, 0.002117241569888881, 3.3000169778761195e-5, 0.0012329250211764251, 0.00022135942746544888, 0.0005660469222731292, 0.9953063345643973, 0.0001876577027419166, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034943562587306316, 0.0027655074305563162, 5.2586389271923995e-5, 0.0013282194361467325, 0.00023999473046272177, 0.0006609669332212116, 0.9943552629585674, 0.00024804316256362357, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003771689969503236, 0.003619499515887967, 8.353961808919769e-5, 0.0014396540498327777, 0.00026209749093517514, 0.0007650109780188409, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122573, 0.004819320441399929, 0.00013440229007386737, 0.0015939327322634508, 0.0002919384547513802, 0.0008872113754603066, 0.9914330082058364, 0.00042160880579636997, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788655e-5, 1.1130268062387155e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.72851758889755e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.203877442825716e-5, 1.3325202141868896e-5, -0.00011442804351306558, 4.381551081310015e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.470871412257668e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020451, 4.392631735360229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163582e-6, 5.790671014516405e-5, 6.862654306760991e-7, 2.8441967760365867e-5, 1.206213251660915e-5, 1.3164312001116897e-5, -0.00011528830739604374, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219652e-6, 5.8142347044339026e-5, 6.98069783651215e-7, 2.8030259664030743e-5, 1.19747741820889e-5, 1.3301876129803056e-5, -0.0001156262960834044, 4.512230704013416e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.33583384484975e-7, 5.899421721399424e-5, 7.395215862974434e-7, 2.6706672481746915e-5, 1.1693729013195468e-5, 1.3757948604218312e-5, -0.00011689440668647221, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.9117884881075874e-5, 7.454223296072415e-7, 2.6527972723029842e-5, 1.1656122270334623e-5, 1.3822253046618941e-5, -0.0001170824945112227, 4.690363581281162e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526407e-7, 5.914908164049069e-5, 7.468998468271739e-7, 2.648452678093185e-5, 1.164695941677897e-5, 1.3837981647446753e-5, -0.00011713038773117549, 4.695770051747408e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.9154685636868e-5, 7.469076912816547e-7, 2.6520289435684923e-5, 1.1653159667481749e-5, 1.382438785816956e-5, -0.00011715038441044708, 4.6964567509446474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163582e-6, 5.790671014516405e-5, 6.862654306760991e-7, 2.8441967760365867e-5, 1.206213251660915e-5, 1.3164312001116897e-5, -0.00011528830739604374, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219652e-6, 5.8142347044339026e-5, 6.98069783651215e-7, 2.8030259664030743e-5, 1.19747741820889e-5, 1.3301876129803056e-5, -0.0001156262960834044, 4.512230704013416e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.33583384484975e-7, 5.899421721399424e-5, 7.395215862974434e-7, 2.6706672481746915e-5, 1.1693729013195468e-5, 1.3757948604218312e-5, -0.00011689440668647221, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.9117884881075874e-5, 7.454223296072415e-7, 2.6527972723029842e-5, 1.1656122270334623e-5, 1.3822253046618941e-5, -0.0001170824945112227, 4.690363581281162e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526407e-7, 5.914908164049069e-5, 7.468998468271739e-7, 2.648452678093185e-5, 1.164695941677897e-5, 1.3837981647446753e-5, -0.00011713038773117549, 4.695770051747408e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.9154685636868e-5, 7.469076912816547e-7, 2.6520289435684923e-5, 1.1653159667481749e-5, 1.382438785816956e-5, -0.00011715038441044708, 4.6964567509446474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725195e-5, 6.244188484067266e-5, 7.469096530800148e-7, 5.689211489718057e-5, 7.117347262923198e-6, 5.954610288730178e-6, -0.00011715017485368015, 5.2192689583454755e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505835e-5, 6.224050412237632e-5, 7.895866230347865e-7, 5.132817405350146e-5, 6.520575264262392e-6, 6.947186299149543e-6, -0.0001143995768258657, 5.253507349047037e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051418e-5, 6.220383131610451e-5, 8.341723276865513e-7, 4.688426678082349e-5, 6.042018654988591e-6, 7.674396605223631e-6, -0.00011232120010822011, 5.3048756154447685e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282239e-6, 6.209775074490823e-5, 9.9338441696569e-7, 3.164071366681596e-5, 4.403797925087191e-6, 1.0241153998189891e-5, -0.00010524984542398185, 5.449107557297122e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175863e-6, 6.19240080765144e-5, 1.0177684176149202e-6, 2.828332830148805e-5, 4.04683083365762e-6, 1.09205845755174e-5, -0.00010356484456112768, 5.436537404511159e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390405e-6, 6.188798984686707e-5, 1.0238433232401107e-6, 2.7501378047115117e-5, 3.9636354793442826e-6, 1.107675869453048e-5, -0.00010317677669661703, 5.434339897910379e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204793e-6, 6.247690594571885e-5, 1.0192731906927758e-6, 3.2018016651422175e-5, 4.437075455102355e-6, 9.945714368397734e-6, -0.00010576904129277546, 5.533079821646358e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204793e-6, 6.247690594571885e-5, 1.0192731906927758e-6, 3.2018016651422175e-5, 4.437075455102355e-6, 9.945714368397734e-6, -0.00010576904129277546, 5.533079821646358e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874106e-6, 6.266998026886617e-5, 1.0700320180159662e-6, 2.892371256096631e-5, 4.101534709033817e-6, 1.036068717311118e-5, -0.00010454187870652223, 5.600984229402899e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418788e-6, 6.298079881956724e-5, 1.1236652349036146e-6, 2.6563763273362886e-5, 3.844067696057181e-6, 1.0612910724855142e-5, -0.00010377172107393951, 5.6751688176122305e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.943150652624033e-6, 6.403309190740932e-5, 1.3137303143827417e-6, 1.8165287963298494e-5, 2.932346241991071e-6, 1.1625115073342808e-5, -0.00010102022165751406, 5.893800809713664e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057089474e-6, 6.40569042715127e-5, 1.341573690629332e-6, 1.6030627697867832e-5, 2.704536107358721e-6, 1.2015165543930609e-5, -0.0001000911408402673, 5.900653034677052e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946415663e-6, 6.406779907089843e-5, 1.3485482675961314e-6, 1.553541016422289e-5, 2.6516542735099545e-6, 1.2103970379972186e-5, -9.98812418204993e-5, 5.902789658941259e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783946e-6, 6.459268738237881e-5, 1.358626805035165e-6, 1.856923959987113e-5, 2.969006932784903e-6, 1.1304968594741936e-5, -0.00010175620551961383, 5.98024499908027e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824352994e-6, 6.469045154775781e-5, 1.370800835561326e-6, 1.8285994414260048e-5, 2.9377766981512915e-6, 1.1317267248391084e-5, -0.00010172772904256205, 5.995148280875782e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881786e-6, 6.503382262129019e-5, 1.4129958249910467e-6, 1.7349139697843984e-5, 2.8344163610915493e-6, 1.1353061159745516e-5, -0.00010165520131587997, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678784e-6, 6.508222234187481e-5, 1.4189136446719045e-6, 1.7220970263180846e-5, 2.8202826330857247e-6, 1.135788022645034e-5, -0.00010164694921842067, 6.05300620283582e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505601643e-6, 6.509436917251639e-5, 1.4203920273976046e-6, 1.718945948846128e-5, 2.8168064440707484e-6, 1.1358990654822528e-5, -0.00010164518175989675, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385296e-5, 1.4204031918963021e-6, 1.7204089485866213e-5, 2.8183547598207596e-6, 1.1355649533987887e-5, -0.00010165368856272937, 6.0549059465901766e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783946e-6, 6.459268738237881e-5, 1.358626805035165e-6, 1.856923959987113e-5, 2.969006932784903e-6, 1.1304968594741936e-5, -0.00010175620551961383, 5.98024499908027e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824352994e-6, 6.469045154775781e-5, 1.370800835561326e-6, 1.8285994414260048e-5, 2.9377766981512915e-6, 1.1317267248391084e-5, -0.00010172772904256205, 5.995148280875782e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881786e-6, 6.503382262129019e-5, 1.4129958249910467e-6, 1.7349139697843984e-5, 2.8344163610915493e-6, 1.1353061159745516e-5, -0.00010165520131587997, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678784e-6, 6.508222234187481e-5, 1.4189136446719045e-6, 1.7220970263180846e-5, 2.8202826330857247e-6, 1.135788022645034e-5, -0.00010164694921842067, 6.05300620283582e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505601643e-6, 6.509436917251639e-5, 1.4203920273976046e-6, 1.718945948846128e-5, 2.8168064440707484e-6, 1.1358990654822528e-5, -0.00010164518175989675, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385296e-5, 1.4204031918963021e-6, 1.7204089485866213e-5, 2.8183547598207596e-6, 1.1355649533987887e-5, -0.00010165368856272937, 6.0549059465901766e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478335e-6, 6.509598189380693e-5, 1.4204072138594644e-6, 1.720191825310692e-5, 2.8181279063728787e-6, 1.135621017801771e-5, -0.00010131298269677687, 6.054848622091289e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505923e-6, 6.56530041297489e-5, 1.4910670830441579e-6, 1.568366916538604e-5, 2.649181401902919e-6, 1.1394231623052967e-5, -0.00010118725669402161, 6.138628702537224e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.239471140732401e-6, 6.630711724966683e-5, 1.5659586437215604e-6, 1.4679308907307302e-5, 2.5358540913661166e-6, 1.1337899461186632e-5, -0.00010140570351857914, 6.2190363060631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196750255e-6, 6.849262337610678e-5, 1.828696788294782e-6, 1.0491185041783875e-5, 2.0726004406828383e-6, 1.140588042729839e-5, -0.00010181477816151654, 6.452515767674865e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461266762e-6, 6.86750974271456e-5, 1.8657125420428336e-6, 8.938851549709623e-6, 1.9062886391373011e-6, 1.1655441508056903e-5, -0.0001013252605620558, 6.466865649836872e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.990972776146891e-6, 6.872428819877107e-5, 1.8750199032900174e-6, 8.57856103266678e-6, 1.8676916733869654e-6, 1.171234746673836e-5, -0.0001012192929295204, 6.470411878520316e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685358192e-7, 6.911930756100322e-5, 1.8765770274191658e-6, 1.1608631835270859e-5, 2.1882182544936766e-6, 1.1011483249851116e-5, -0.00010296813899555605, 6.508425198982198e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685358192e-7, 6.911930756100322e-5, 1.8765770274191658e-6, 1.1608631835270859e-5, 2.1882182544936766e-6, 1.1011483249851116e-5, -0.00010296813899555605, 6.508425198982198e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551184e-6, 7.000873564525538e-5, 1.970904303524131e-6, 1.1041532286134845e-5, 2.1231692746669846e-6, 1.0873529029797558e-5, -0.0001036605815862444, 6.5845277443103885e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967672e-6, 7.097885861059482e-5, 2.070459274051629e-6, 1.0777110067781216e-5, 2.0920032557741213e-6, 1.0703056519773488e-5, -0.00010459488829557594, 6.650576332703899e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.567068715062304e-6, 7.4266594508573e-5, 2.4161271355654202e-6, 9.077497029896547e-6, 1.9049283907374803e-6, 1.0383100697666987e-5, -0.00010746100305780137, 6.845686580299639e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.08721732563814e-6, 7.463181445234844e-5, 2.463377322795018e-6, 8.05689419292502e-6, 1.7959623655459907e-6, 1.0520621419227271e-5, -0.00010742184828529722, 6.8659612068173445e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.209866858306598e-6, 7.472513060550712e-5, 2.475269994758556e-6, 7.817653231486142e-6, 1.7704719397471438e-6, 1.0552885234463074e-5, -0.00010742185050511439, 6.87057264084576e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639095274e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009672e-5, 2.0160381938703643e-6, 1.0071643240925912e-5, -0.0001087599913551938, 6.873598590747476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639095274e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009672e-5, 2.0160381938703643e-6, 1.0071643240925912e-5, -0.0001087599913551938, 6.873598590747476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3509161270041136e-6, 7.621771980862895e-5, 2.600305423656363e-6, 1.0084374569886816e-5, 2.012731735598205e-6, 9.897984813096525e-6, -0.00011008948113996173, 6.925448662090741e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.45916551986839e-6, 7.748946979403403e-5, 2.7257862280707355e-6, 1.0178529912786255e-5, 2.0249935466930455e-6, 9.738033957731142e-6, -0.00011158155733258171, 6.965578373398112e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.049484436718983e-6, 8.188539161621189e-5, 3.1582791369681053e-6, 9.993973383839322e-6, 2.015918265332333e-6, 9.362936842906526e-6, -0.0001165621239137172, 7.096140231740046e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569796774e-6, 8.245727189395096e-5, 3.216581168921705e-6, 9.528074400218073e-6, 1.9673510758430744e-6, 9.396292294082268e-6, -0.00011701868780611378, 7.121334616118028e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399429439517593e-6, 8.26009411660157e-5, 3.2312297514866366e-6, 9.417226560424689e-6, 1.955883797867466e-6, 9.4051835960791e-6, -0.00011713686189657265, 7.126967585181464e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8303811618865655e-6, 8.274735235952215e-5, 3.238582227760372e-6, 1.0649367147589728e-5, 2.090495177573182e-6, 9.21596701516002e-6, -0.00011786692523173527, 7.094780142243272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.8303811618865655e-6, 8.274735235952215e-5, 3.238582227760372e-6, 1.0649367147589728e-5, 2.090495177573182e-6, 9.21596701516002e-6, -0.00011786692523173527, 7.094780142243272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.91172066867763e-6, 8.436598051424236e-5, 3.394507424027705e-6, 1.084025167884648e-5, 2.1173640731864576e-6, 9.092179744014557e-6, -0.00011984550408133547, 7.123499978340293e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644513553e-6, 8.607459783329965e-5, 3.556590245317646e-6, 1.107222622137265e-5, 2.150934484500009e-6, 9.006243060249772e-6, -0.0001219755537848938, 7.142962375702707e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.300227209336095e-6, 9.20717735870943e-5, 4.113973517449834e-6, 1.1603385270424305e-5, 2.239530335579134e-6, 8.800221369077583e-6, -0.00012936091057029556, 7.2317992813342995e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739991264e-6, 9.29108545465452e-5, 4.189225547624124e-6, 1.1466507503527316e-5, 2.228117050731713e-6, 8.78648483809903e-6, -0.00013029477627844114, 7.263864817914642e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622314973e-6, 9.31207215121726e-5, 4.208080051842248e-6, 1.1432529280427146e-5, 2.2253735253085295e-6, 8.785043566324588e-6, -0.0001305294236980897, 7.2711739997831e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719283373e-6, 9.316528819396452e-5, 4.216088057963699e-6, 1.1991899264389862e-5, 2.290582293991993e-6, 8.79592016547555e-6, -0.0001308742848017022, 7.211502153988242e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719283373e-6, 9.316528819396452e-5, 4.216088057963699e-6, 1.1991899264389862e-5, 2.290582293991993e-6, 8.79592016547555e-6, -0.0001308742848017022, 7.211502153988242e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912105e-6, 9.434383308632245e-5, 4.32368176527115e-6, 1.2142537075002866e-5, 2.31436258133688e-6, 8.783895269883906e-6, -0.00013236487209522077, 7.2205038539123155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388660637e-6, 9.55775765929419e-5, 4.434896743324187e-6, 1.229733096480904e-5, 2.339380350639029e-6, 8.784513204262157e-6, -0.0001339319781830797, 7.229256088237319e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966734645e-6, 9.989873927378836e-5, 4.8194156726552995e-6, 1.2822021030554346e-5, 2.4255436188421586e-6, 8.806777333014038e-6, -0.00013942390883014573, 7.266360804618062e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102419957e-6, 0.00010051367244473613, 4.8730844215414515e-6, 1.2890400624448275e-5, 2.436936252856085e-6, 8.807535014863801e-6, -0.00014020174743832717, 7.275266169639431e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032152705e-6, 0.00010066745139688785, 4.88648671929422e-6, 1.2907421745725722e-5, 2.439792468599512e-6, 8.808165993311952e-6, -0.00014039645376762882, 7.277405740594301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127270945e-6, 0.00010066184193750245, 4.886936963906232e-6, 1.2918103508683416e-5, 2.4418536352223312e-6, 8.829082701415279e-6, -0.00014040476778800416, 7.267801528547351e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbd30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbd50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbd70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbd90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], (30.0, 100.0), [1.0, 1.0, 0.01, 1.8577879818304316e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbd30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbd50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbd70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbd90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0005028035341429187, 0.00043790648969279874, 3.6569552043568393e-6, 0.00048187820445612763, 4.708562768297549e-5, 0.0002802021789062314, 0.9982030960434003, 4.3387633177111914e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000477040038730841, 0.0005543808260305937, 4.656519917827422e-6, 0.0005730000569872143, 7.89978842210273e-5, 0.0002987315921280804, 0.9979622485557976, 5.0961192849615125e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.000454664875124386, 0.0007827921856450582, 7.051002436438245e-6, 0.0007085131481315682, 0.00013213585844144387, 0.00034589370269476696, 0.9975014616994561, 6.750419473306665e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014167, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203906, 0.9973186002858886, 7.469096530800148e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034], [0.0004536791341014167, 0.0008748430335045492, 8.171024886308755e-6, 0.0007520824871800616, 0.00015087968177186488, 0.00036707005402203906, 0.9973186002858886, 7.469096530800148e-5, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00037845923092780405, 0.0011910838104418862, 1.2649225679806418e-5, 0.0009705295452030808, 0.00017944304707474086, 0.00040907212176226554, 0.996756852366504, 0.00010192731906927758, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.000344148314557454, 0.0015521442397300183, 1.93785894824414e-5, 0.001110408189828684, 0.0002000906850104613, 0.0004705794309320388, 0.9961685794664472, 0.00013468775067459603, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582138, 0.0016314087357181847, 2.1071040040975332e-5, 0.001132452731967463, 0.00020364851759223078, 0.00048443166060482487, 0.9960441518033951, 0.00014204072138594644, 0.21, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003408114559582138, 0.0016314087357181847, 2.1071040040975332e-5, 0.001132452731967463, 0.00020364851759223078, 0.00048443166060482487, 0.9960441518033951, 0.00014204072138594644, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003354512889410499, 0.002117241569888881, 3.3000169778761195e-5, 0.0012329250211764251, 0.00022135942746544888, 0.0005660469222731292, 0.9953063345643973, 0.0001876577027419166, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00034943562587306316, 0.0027655074305563162, 5.2586389271923995e-5, 0.0013282194361467325, 0.00023999473046272177, 0.0006609669332212116, 0.9943552629585674, 0.00024804316256362357, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0003771689969503236, 0.003619499515887967, 8.353961808919769e-5, 0.0014396540498327777, 0.00026209749093517514, 0.0007650109780188409, 0.9931291877941726, 0.0003238582227760372, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122573, 0.004819320441399929, 0.00013440229007386737, 0.0015939327322634508, 0.0002919384547513802, 0.0008872113754603066, 0.9914330082058364, 0.00042160880579636997, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [30.0, 30.243947707534623, 32.36543429621891, 36.42385300812073, 37.99999999999999, 37.99999999999999, 43.07876389702658, 48.77671566279182, 49.99999999999999, 49.99999999999999, 57.24842522831926, 66.25035249341147, 77.08249146469292, 90.73308331538136, 100.0], [[[0.000506506899475989, 0.00042455999135880556, 3.5521226687173424e-6, 0.0004701968486384466, 4.317528251719104e-5, 0.00027843402249422007, 0.9982310309629485, 4.2560536560924786e-5, 0.21, 0.143 … 0.005, 0.008, 0.015, 0.08, 0.017, 0.017, 0.017, 0.017, 0.034, 0.034]], [[-1.5516570652813938e-5, 5.470478569166243e-5, 4.2560536560924786e-7, 4.845044734450565e-5, 1.6141852519253854e-5, 7.076804133892143e-6, -0.00011465570251251523, 3.3727781104058598e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5407718887423474e-5, 5.470613623528326e-5, 4.2693004380501876e-7, 4.826625105915098e-5, 1.610528264429647e-5, 7.132609136712838e-6, -0.00011460793274008052, 3.378442508255433e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.5296288832916203e-5, 5.470801976755613e-5, 4.2830049680348554e-7, 4.807837709679111e-5, 1.6067954766254566e-5, 7.18948853245184e-6, -0.00011456016669260587, 3.384314865664941e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4913968284746021e-5, 5.4715959649155457e-5, 4.330452939854498e-7, 4.743577171136068e-5, 1.594020094104269e-5, 7.383944200438843e-6, -0.00011439962660790803, 3.404673096670921e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4860904619674006e-5, 5.471728012482373e-5, 4.3371024134682946e-7, 4.7346869801969176e-5, 1.5922516655682606e-5, 7.4108385938818265e-6, -0.00011437783844953637, 3.407527651506201e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847677090804646e-5, 5.471762007570756e-5, 4.33876304544454e-7, 4.732472364203671e-5, 1.591811071141765e-5, 7.417537131008037e-6, -0.00011437243165455185, 3.4082408806420797e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.4847831816211395e-5, 5.47176946832151e-5, 4.3387633177111915e-7, 4.732511695517485e-5, 1.591817946878485e-5, 7.417389226508935e-6, -0.00011437267645851871, 3.4082516092752533e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3921706289319789e-5, 5.4742063366948494e-5, 4.455175334998211e-7, 4.577552339441281e-5, 1.5609826264638753e-5, 7.885905327606502e-6, -0.00011399544816409784, 3.4583185663112548e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.3025932494214581e-5, 5.4803714806513144e-5, 4.578765986332993e-7, 4.432830935382542e-5, 1.5319794142922968e-5, 8.320803491337926e-6, -0.00011371679027583974, 3.5122243768215647e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0052427157772381e-5, 5.5103258707682234e-5, 5.018188097164543e-7, 3.9635355561227965e-5, 1.4377352811887173e-5, 9.739007505882596e-6, -0.00011300432774313297, 3.6999615045089256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.638508736557768e-6, 5.5151790971575395e-5, 5.082194382591439e-7, 3.898351452482141e-5, 1.4247560684373934e-5, 9.942128953996065e-6, -0.00011291958853511042, 3.7248826986422448e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.536927842893295e-6, 5.5164855054912503e-5, 5.098225211054104e-7, 3.882521914373916e-5, 1.42159577997798e-5, 9.991296286639383e-6, -0.00011290141826970385, 3.7311953064208823e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.60318445423926e-6, 5.5191945443628206e-5, 5.096119284961513e-7, 3.899372263216232e-5, 1.4244414211322911e-5, 9.922590989466713e-6, -0.00011299610549958686, 3.737004748749815e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.132724381903747e-6, 5.543305641709887e-5, 5.340297197942067e-7, 3.6797015955233466e-5, 1.3798387505866724e-5, 1.0581395920837418e-5, -0.00011285394898782922, 3.842787850902282e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-6.788672500286937e-6, 5.579834900418774e-5, 5.6064608671044e-7, 3.4970917444486645e-5, 1.3421761022788655e-5, 1.1130268062387155e-5, -0.00011304983301645209, 3.956563896178391e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.333386687580752e-6, 5.72851758889755e-5, 6.576778137495946e-7, 2.915309585001594e-5, 1.223121833082219e-5, 1.2971445141288039e-5, -0.00011430356973494375, 4.338343397673232e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6380537187442223e-6, 5.7488618054023795e-5, 6.723391016991059e-7, 2.8159612424650837e-5, 1.203877442825716e-5, 1.3325202141868896e-5, -0.00011442804351306558, 4.381551081310015e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.470871412257668e-6, 5.7542836982097866e-5, 6.760225528611478e-7, 2.7927696944099023e-5, 1.199364173203949e-5, 1.3407975436004415e-5, -0.00011446993397020451, 4.392631735360229e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163582e-6, 5.790671014516405e-5, 6.862654306760991e-7, 2.8441967760365867e-5, 1.206213251660915e-5, 1.3164312001116897e-5, -0.00011528830739604374, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219652e-6, 5.8142347044339026e-5, 6.98069783651215e-7, 2.8030259664030743e-5, 1.19747741820889e-5, 1.3301876129803056e-5, -0.0001156262960834044, 4.512230704013416e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.33583384484975e-7, 5.899421721399424e-5, 7.395215862974434e-7, 2.6706672481746915e-5, 1.1693729013195468e-5, 1.3757948604218312e-5, -0.00011689440668647221, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.9117884881075874e-5, 7.454223296072415e-7, 2.6527972723029842e-5, 1.1656122270334623e-5, 1.3822253046618941e-5, -0.0001170824945112227, 4.690363581281162e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526407e-7, 5.914908164049069e-5, 7.468998468271739e-7, 2.648452678093185e-5, 1.164695941677897e-5, 1.3837981647446753e-5, -0.00011713038773117549, 4.695770051747408e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.9154685636868e-5, 7.469076912816547e-7, 2.6520289435684923e-5, 1.1653159667481749e-5, 1.382438785816956e-5, -0.00011715038441044708, 4.6964567509446474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-1.8503184399385595e-6, 5.7691987377965265e-5, 6.750419473306665e-7, 2.8882906588077215e-5, 1.2155209293193024e-5, 1.3020848550240782e-5, -0.00011499855446702865, 4.422879150160256e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.4398947104163582e-6, 5.790671014516405e-5, 6.862654306760991e-7, 2.8441967760365867e-5, 1.206213251660915e-5, 1.3164312001116897e-5, -0.00011528830739604374, 4.466814252528036e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.0332614245219652e-6, 5.8142347044339026e-5, 6.98069783651215e-7, 2.8030259664030743e-5, 1.19747741820889e-5, 1.3301876129803056e-5, -0.0001156262960834044, 4.512230704013416e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.33583384484975e-7, 5.899421721399424e-5, 7.395215862974434e-7, 2.6706672481746915e-5, 1.1693729013195468e-5, 1.3757948604218312e-5, -0.00011689440668647221, 4.668734402534867e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.224756792750249e-7, 5.9117884881075874e-5, 7.454223296072415e-7, 2.6527972723029842e-5, 1.1656122270334623e-5, 1.3822253046618941e-5, -0.0001170824945112227, 4.690363581281162e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.691683469526407e-7, 5.914908164049069e-5, 7.468998468271739e-7, 2.648452678093185e-5, 1.164695941677897e-5, 1.3837981647446753e-5, -0.00011713038773117549, 4.695770051747408e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [5.544973700165459e-7, 5.9154685636868e-5, 7.469076912816547e-7, 2.6520289435684923e-5, 1.1653159667481749e-5, 1.382438785816956e-5, -0.00011715038441044708, 4.6964567509446474e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.122196104725195e-5, 6.244188484067266e-5, 7.469096530800148e-7, 5.689211489718057e-5, 7.117347262923198e-6, 5.954610288730178e-6, -0.00011715017485368015, 5.2192689583454755e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8679956885505835e-5, 6.224050412237632e-5, 7.895866230347865e-7, 5.132817405350146e-5, 6.520575264262392e-6, 6.947186299149543e-6, -0.0001143995768258657, 5.253507349047037e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.6622361192051418e-5, 6.220383131610451e-5, 8.341723276865513e-7, 4.688426678082349e-5, 6.042018654988591e-6, 7.674396605223631e-6, -0.00011232120010822011, 5.3048756154447685e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.576062885282239e-6, 6.209775074490823e-5, 9.9338441696569e-7, 3.164071366681596e-5, 4.403797925087191e-6, 1.0241153998189891e-5, -0.00010524984542398185, 5.449107557297122e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.064213048175863e-6, 6.19240080765144e-5, 1.0177684176149202e-6, 2.828332830148805e-5, 4.04683083365762e-6, 1.09205845755174e-5, -0.00010356484456112768, 5.436537404511159e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.711168592390405e-6, 6.188798984686707e-5, 1.0238433232401107e-6, 2.7501378047115117e-5, 3.9636354793442826e-6, 1.107675869453048e-5, -0.00010317677669661703, 5.434339897910379e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-9.661024140204793e-6, 6.247690594571885e-5, 1.0192731906927758e-6, 3.2018016651422175e-5, 4.437075455102355e-6, 9.945714368397734e-6, -0.00010576904129277546, 5.533079821646358e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-9.661024140204793e-6, 6.247690594571885e-5, 1.0192731906927758e-6, 3.2018016651422175e-5, 4.437075455102355e-6, 9.945714368397734e-6, -0.00010576904129277546, 5.533079821646358e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-8.185052252874106e-6, 6.266998026886617e-5, 1.0700320180159662e-6, 2.892371256096631e-5, 4.101534709033817e-6, 1.036068717311118e-5, -0.00010454187870652223, 5.600984229402899e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-7.028653492418788e-6, 6.298079881956724e-5, 1.1236652349036146e-6, 2.6563763273362886e-5, 3.844067696057181e-6, 1.0612910724855142e-5, -0.00010377172107393951, 5.6751688176122305e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.943150652624033e-6, 6.403309190740932e-5, 1.3137303143827417e-6, 1.8165287963298494e-5, 2.932346241991071e-6, 1.1625115073342808e-5, -0.00010102022165751406, 5.893800809713664e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.9583195057089474e-6, 6.40569042715127e-5, 1.341573690629332e-6, 1.6030627697867832e-5, 2.704536107358721e-6, 1.2015165543930609e-5, -0.0001000911408402673, 5.900653034677052e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.7289299946415663e-6, 6.406779907089843e-5, 1.3485482675961314e-6, 1.553541016422289e-5, 2.6516542735099545e-6, 1.2103970379972186e-5, -9.98812418204993e-5, 5.902789658941259e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783946e-6, 6.459268738237881e-5, 1.358626805035165e-6, 1.856923959987113e-5, 2.969006932784903e-6, 1.1304968594741936e-5, -0.00010175620551961383, 5.98024499908027e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824352994e-6, 6.469045154775781e-5, 1.370800835561326e-6, 1.8285994414260048e-5, 2.9377766981512915e-6, 1.1317267248391084e-5, -0.00010172772904256205, 5.995148280875782e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881786e-6, 6.503382262129019e-5, 1.4129958249910467e-6, 1.7349139697843984e-5, 2.8344163610915493e-6, 1.1353061159745516e-5, -0.00010165520131587997, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678784e-6, 6.508222234187481e-5, 1.4189136446719045e-6, 1.7220970263180846e-5, 2.8202826330857247e-6, 1.135788022645034e-5, -0.00010164694921842067, 6.05300620283582e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505601643e-6, 6.509436917251639e-5, 1.4203920273976046e-6, 1.718945948846128e-5, 2.8168064440707484e-6, 1.1358990654822528e-5, -0.00010164518175989675, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385296e-5, 1.4204031918963021e-6, 1.7204089485866213e-5, 2.8183547598207596e-6, 1.1355649533987887e-5, -0.00010165368856272937, 6.0549059465901766e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-3.1706941946609685e-6, 6.450030878676597e-5, 1.3468775067459604e-6, 1.8861294369200014e-5, 3.00116868364343e-6, 1.1289924663095749e-5, -0.0001017945417453625, 5.96566193057235e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-3.0185687942783946e-6, 6.459268738237881e-5, 1.358626805035165e-6, 1.856923959987113e-5, 2.969006932784903e-6, 1.1304968594741936e-5, -0.00010175620551961383, 5.98024499908027e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.8697099824352994e-6, 6.469045154775781e-5, 1.370800835561326e-6, 1.8285994414260048e-5, 2.9377766981512915e-6, 1.1317267248391084e-5, -0.00010172772904256205, 5.995148280875782e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.3742670099881786e-6, 6.503382262129019e-5, 1.4129958249910467e-6, 1.7349139697843984e-5, 2.8344163610915493e-6, 1.1353061159745516e-5, -0.00010165520131587997, 6.0460326609058565e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.306326093678784e-6, 6.508222234187481e-5, 1.4189136446719045e-6, 1.7220970263180846e-5, 2.8202826330857247e-6, 1.135788022645034e-5, -0.00010164694921842067, 6.05300620283582e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2895815505601643e-6, 6.509436917251639e-5, 1.4203920273976046e-6, 1.718945948846128e-5, 2.8168064440707484e-6, 1.1358990654822528e-5, -0.00010164518175989675, 6.054745523188348e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.2959819792849153e-6, 6.509626762385296e-5, 1.4204031918963021e-6, 1.7204089485866213e-5, 2.8183547598207596e-6, 1.1355649533987887e-5, -0.00010165368856272937, 6.0549059465901766e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[-2.634511370478335e-6, 6.509598189380693e-5, 1.4204072138594644e-6, 1.720191825310692e-5, 2.8181279063728787e-6, 1.135621017801771e-5, -0.00010131298269677687, 6.054848622091289e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.8225254116505923e-6, 6.56530041297489e-5, 1.4910670830441579e-6, 1.568366916538604e-5, 2.649181401902919e-6, 1.1394231623052967e-5, -0.00010118725669402161, 6.138628702537224e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-1.239471140732401e-6, 6.630711724966683e-5, 1.5659586437215604e-6, 1.4679308907307302e-5, 2.5358540913661166e-6, 1.1337899461186632e-5, -0.00010140570351857914, 6.2190363060631e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0712763196750255e-6, 6.849262337610678e-5, 1.828696788294782e-6, 1.0491185041783875e-5, 2.0726004406828383e-6, 1.140588042729839e-5, -0.00010181477816151654, 6.452515767674865e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.8170032461266762e-6, 6.86750974271456e-5, 1.8657125420428336e-6, 8.938851549709623e-6, 1.9062886391373011e-6, 1.1655441508056903e-5, -0.0001013252605620558, 6.466865649836872e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.990972776146891e-6, 6.872428819877107e-5, 1.8750199032900174e-6, 8.57856103266678e-6, 1.8676916733869654e-6, 1.171234746673836e-5, -0.0001012192929295204, 6.470411878520316e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [6.554958685358192e-7, 6.911930756100322e-5, 1.8765770274191658e-6, 1.1608631835270859e-5, 2.1882182544936766e-6, 1.1011483249851116e-5, -0.00010296813899555605, 6.508425198982198e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[6.554958685358192e-7, 6.911930756100322e-5, 1.8765770274191658e-6, 1.1608631835270859e-5, 2.1882182544936766e-6, 1.1011483249851116e-5, -0.00010296813899555605, 6.508425198982198e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.0581833025551184e-6, 7.000873564525538e-5, 1.970904303524131e-6, 1.1041532286134845e-5, 2.1231692746669846e-6, 1.0873529029797558e-5, -0.0001036605815862444, 6.5845277443103885e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [1.3228242348967672e-6, 7.097885861059482e-5, 2.070459274051629e-6, 1.0777110067781216e-5, 2.0920032557741213e-6, 1.0703056519773488e-5, -0.00010459488829557594, 6.650576332703899e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.567068715062304e-6, 7.4266594508573e-5, 2.4161271355654202e-6, 9.077497029896547e-6, 1.9049283907374803e-6, 1.0383100697666987e-5, -0.00010746100305780137, 6.845686580299639e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.08721732563814e-6, 7.463181445234844e-5, 2.463377322795018e-6, 8.05689419292502e-6, 1.7959623655459907e-6, 1.0520621419227271e-5, -0.00010742184828529722, 6.8659612068173445e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.209866858306598e-6, 7.472513060550712e-5, 2.475269994758556e-6, 7.817653231486142e-6, 1.7704719397471438e-6, 1.0552885234463074e-5, -0.00010742185050511439, 6.87057264084576e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.1821254639095274e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009672e-5, 2.0160381938703643e-6, 1.0071643240925912e-5, -0.0001087599913551938, 6.873598590747476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.1821254639095274e-6, 7.50189036920946e-5, 2.480431625636236e-6, 1.0117250548009672e-5, 2.0160381938703643e-6, 1.0071643240925912e-5, -0.0001087599913551938, 6.873598590747476e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.3509161270041136e-6, 7.621771980862895e-5, 2.600305423656363e-6, 1.0084374569886816e-5, 2.012731735598205e-6, 9.897984813096525e-6, -0.00011008948113996173, 6.925448662090741e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.45916551986839e-6, 7.748946979403403e-5, 2.7257862280707355e-6, 1.0178529912786255e-5, 2.0249935466930455e-6, 9.738033957731142e-6, -0.00011158155733258171, 6.965578373398112e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.049484436718983e-6, 8.188539161621189e-5, 3.1582791369681053e-6, 9.993973383839322e-6, 2.015918265332333e-6, 9.362936842906526e-6, -0.0001165621239137172, 7.096140231740046e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3317823569796774e-6, 8.245727189395096e-5, 3.216581168921705e-6, 9.528074400218073e-6, 1.9673510758430744e-6, 9.396292294082268e-6, -0.00011701868780611378, 7.121334616118028e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.399429439517593e-6, 8.26009411660157e-5, 3.2312297514866366e-6, 9.417226560424689e-6, 1.955883797867466e-6, 9.4051835960791e-6, -0.00011713686189657265, 7.126967585181464e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.8303811618865655e-6, 8.274735235952215e-5, 3.238582227760372e-6, 1.0649367147589728e-5, 2.090495177573182e-6, 9.21596701516002e-6, -0.00011786692523173527, 7.094780142243272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[2.8303811618865655e-6, 8.274735235952215e-5, 3.238582227760372e-6, 1.0649367147589728e-5, 2.090495177573182e-6, 9.21596701516002e-6, -0.00011786692523173527, 7.094780142243272e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.91172066867763e-6, 8.436598051424236e-5, 3.394507424027705e-6, 1.084025167884648e-5, 2.1173640731864576e-6, 9.092179744014557e-6, -0.00011984550408133547, 7.123499978340293e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [2.9719995644513553e-6, 8.607459783329965e-5, 3.556590245317646e-6, 1.107222622137265e-5, 2.150934484500009e-6, 9.006243060249772e-6, -0.0001219755537848938, 7.142962375702707e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.300227209336095e-6, 9.20717735870943e-5, 4.113973517449834e-6, 1.1603385270424305e-5, 2.239530335579134e-6, 8.800221369077583e-6, -0.00012936091057029556, 7.2317992813342995e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4497219739991264e-6, 9.29108545465452e-5, 4.189225547624124e-6, 1.1466507503527316e-5, 2.228117050731713e-6, 8.78648483809903e-6, -0.00013029477627844114, 7.263864817914642e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4865017622314973e-6, 9.31207215121726e-5, 4.208080051842248e-6, 1.1432529280427146e-5, 2.2253735253085295e-6, 8.785043566324588e-6, -0.0001305294236980897, 7.2711739997831e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2030046719283373e-6, 9.316528819396452e-5, 4.216088057963699e-6, 1.1991899264389862e-5, 2.290582293991993e-6, 8.79592016547555e-6, -0.0001308742848017022, 7.211502153988242e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]], [[3.2030046719283373e-6, 9.316528819396452e-5, 4.216088057963699e-6, 1.1991899264389862e-5, 2.290582293991993e-6, 8.79592016547555e-6, -0.0001308742848017022, 7.211502153988242e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912105e-6, 9.434383308632245e-5, 4.32368176527115e-6, 1.2142537075002866e-5, 2.31436258133688e-6, 8.783895269883906e-6, -0.00013236487209522077, 7.2205038539123155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388660637e-6, 9.55775765929419e-5, 4.434896743324187e-6, 1.229733096480904e-5, 2.339380350639029e-6, 8.784513204262157e-6, -0.0001339319781830797, 7.229256088237319e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966734645e-6, 9.989873927378836e-5, 4.8194156726552995e-6, 1.2822021030554346e-5, 2.4255436188421586e-6, 8.806777333014038e-6, -0.00013942390883014573, 7.266360804618062e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102419957e-6, 0.00010051367244473613, 4.8730844215414515e-6, 1.2890400624448275e-5, 2.436936252856085e-6, 8.807535014863801e-6, -0.00014020174743832717, 7.275266169639431e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032152705e-6, 0.00010066745139688785, 4.88648671929422e-6, 1.2907421745725722e-5, 2.439792468599512e-6, 8.808165993311952e-6, -0.00014039645376762882, 7.277405740594301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127270945e-6, 0.00010066184193750245, 4.886936963906232e-6, 1.2918103508683416e-5, 2.4418536352223312e-6, 8.829082701415279e-6, -0.00014040476778800416, 7.267801528547351e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0]]], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122573, 0.004819320441399929, 0.00013440229007386737, 0.0015939327322634508, 0.0002919384547513802, 0.0008872113754603066, 0.9914330082058364, 0.00042160880579636997, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.2030046719283373e-6, 9.316528819396452e-5, 4.216088057963699e-6, 1.1991899264389862e-5, 2.290582293991993e-6, 8.79592016547555e-6, -0.0001308742848017022, 7.211502153988242e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2360584634912105e-6, 9.434383308632245e-5, 4.32368176527115e-6, 1.2142537075002866e-5, 2.31436258133688e-6, 8.783895269883906e-6, -0.00013236487209522077, 7.2205038539123155e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.2690242388660637e-6, 9.55775765929419e-5, 4.434896743324187e-6, 1.229733096480904e-5, 2.339380350639029e-6, 8.784513204262157e-6, -0.0001339319781830797, 7.229256088237319e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3850510966734645e-6, 9.989873927378836e-5, 4.8194156726552995e-6, 1.2822021030554346e-5, 2.4255436188421586e-6, 8.806777333014038e-6, -0.00013942390883014573, 7.266360804618062e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4048525102419957e-6, 0.00010051367244473613, 4.8730844215414515e-6, 1.2890400624448275e-5, 2.436936252856085e-6, 8.807535014863801e-6, -0.00014020174743832717, 7.275266169639431e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.4097297032152705e-6, 0.00010066745139688785, 4.88648671929422e-6, 1.2907421745725722e-5, 2.439792468599512e-6, 8.808165993311952e-6, -0.00014039645376762882, 7.277405740594301e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [3.3991475127270945e-6, 0.00010066184193750245, 4.886936963906232e-6, 1.2918103508683416e-5, 2.4418536352223312e-6, 8.829082701415279e-6, -0.00014040476778800416, 7.267801528547351e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [-2.637092151432043e-10, 5.476717806680523e-11, 1.5766206697140022e-11, 5.000778319099641e-10, 6.044700624993854e-11, 5.215280139724993e-11, -3.3716715937781894e-10, -8.233464983452526e-11, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00044570959125509536, 0.005613926211940225, 0.00017158342383826087, 0.001696121123472895, 0.00031135579301610117, 0.0009596350979667631, 0.990320471606569, 0.0004812138186045837, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [-0.00018196897715595884, 8.153353713866041e-6, 1.3400066169899586e-5, 0.00018457347730244198, 4.600714562205072e-5, 2.6490728596765754e-5, -3.3973795368552323e-7, -5.5306642349697435e-5, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.00041859436108122573, 0.004819320441399929, 0.00013440229007386737, 0.0015939327322634508, 0.0002919384547513802, 0.0008872113754603066, 0.9914330082058364, 0.00042160880579636997, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779417677e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779531905e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbd30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbd50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbd70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbd90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.00041859436108122573, 0.004819320441399929, 0.00013440229007386737, 0.0015939327322634508, 0.0002919384547513802, 0.0008872113754603066, 0.9914330082058364, 0.00042160880579636997, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 1.8577879818304316e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbd30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbd50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbd70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbd90, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 30.0, [1.0, 1.0, 0.01, 1.8577879818304316e-17, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779531905e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 30.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(-12, 12, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 77
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 362
Number of accepted steps: 12
Number of rejected steps: 0
Maximum eigenvalue recorded: 0, [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], SciMLBase.ReturnCode.Success), ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}, CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}, OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}, DiffEqBase.DEStats, Vector{Int64}}([[0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], nothing, nothing, [100.0], [[[0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Float64}, ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}, SciMLBase.StandardODEProblem}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbf10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbf30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbf50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbf70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], (100.0, 100.0), [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0], Base.Pairs{Symbol, VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}, Tuple{Symbol}, NamedTuple{(:callback,), Tuple{VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}}}}(:callback => VectorContinuousCallback{ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}, typeof(SciMLBase.INITIALIZE_DEFAULT), typeof(SciMLBase.FINALIZE_DEFAULT), Float64, Int64, Rational{Int64}, Nothing, Int64}(ModelingToolkit.var"#309#319"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xb3f87b1c, 0x67a2e842, 0x1fc81c64, 0xb666a790, 0x4f9ca0bf)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)(-50.0, t)
ˍ₋out[2] = (+)(-12.0, t)
ˍ₋out[3] = (+)(-28.0, t)
ˍ₋out[4] = (+)(-22.0, t)
ˍ₋out[5] = (+)(-38.0, t)
ˍ₋out[6] = (+)(-4.0, t)
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), ModelingToolkit.var"#311#321"{Vector{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames}, Vector{Int64}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{argnames, Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag"} where argnames[RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#601"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x08271ff5, 0x8127e51b, 0x81cf77e2, 0xfa8971c0, 0xfacc6529)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#601").u
ˍ₋arg1 = (var"##MTKIntegrator#601").u
ˍ₋arg2 = (var"##MTKIntegrator#601").p
t = (var"##MTKIntegrator#601").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = (+)((+)((+)((*)(0.252, ˍ₋arg2[9]), (*)(0.105, ˍ₋arg2[13])), (*)(0.209, ˍ₋arg2[1])), (*)(0.42, ˍ₋arg2[5]))
ˍ₋out[10] = (+)((+)((*)(0.4, ˍ₋arg2[14]), (*)(0.2, ˍ₋arg2[6])), (*)(0.6, ˍ₋arg2[5]))
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#604"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x6c364afb, 0x9f993a03, 0x33bc3686, 0xa76df737, 0x8000d21d)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#604").u
ˍ₋arg1 = (var"##MTKIntegrator#604").u
ˍ₋arg2 = (var"##MTKIntegrator#604").p
t = (var"##MTKIntegrator#604").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[10] = 0.143
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#607"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xe0091510, 0x16fa24cd, 0x3138ae92, 0x10edd005, 0xc890a459)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#607").u
ˍ₋arg1 = (var"##MTKIntegrator#607").u
ˍ₋arg2 = (var"##MTKIntegrator#607").p
t = (var"##MTKIntegrator#607").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.21
ˍ₋out[11] = 0.11
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#610"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x2e3e2d1f, 0xb54c2bb9, 0xb86b3c66, 0xdbf2aec0, 0xe737f3a3)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#610").u
ˍ₋arg1 = (var"##MTKIntegrator#610").u
ˍ₋arg2 = (var"##MTKIntegrator#610").p
t = (var"##MTKIntegrator#610").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.36
ˍ₋out[12] = 0.005
ˍ₋out[11] = 0.2
ˍ₋out[13] = 0.005
ˍ₋out[14] = 0.008
ˍ₋out[15] = 0.015
ˍ₋out[16] = 0.08
ˍ₋out[17] = 0.017
ˍ₋out[18] = 0.017
ˍ₋out[19] = 0.017
ˍ₋out[20] = 0.017
ˍ₋out[21] = 0.034
ˍ₋out[22] = 0.034
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#613"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0x3c679795, 0xcab732d8, 0xb316c822, 0x024b5b0c, 0x9556d064)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#613").u
ˍ₋arg1 = (var"##MTKIntegrator#613").u
ˍ₋arg2 = (var"##MTKIntegrator#613").p
t = (var"##MTKIntegrator#613").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[17] = 0.02
ˍ₋out[19] = 0.02
ˍ₋out[20] = 0.01
ˍ₋out[21] = 0.025
ˍ₋out[10] = 0.2
ˍ₋out[22] = 0.025
ˍ₋out[18] = 0.02
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##MTKIntegrator#616"),), Symbolics.var"#_RGF_ModTag", Symbolics.var"#_RGF_ModTag", (0xf2cb257e, 0x9e97184d, 0x99cd6462, 0xe1dd0bd2, 0x5b981380)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
ˍ₋out = (var"##MTKIntegrator#616").u
ˍ₋arg1 = (var"##MTKIntegrator#616").u
ˍ₋arg2 = (var"##MTKIntegrator#616").p
t = (var"##MTKIntegrator#616").t
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[9] = 0.422
ˍ₋out[12] = 0.0057
ˍ₋out[11] = 0.285
ˍ₋out[13] = 0.0057
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end
end)], [1, 2, 3, 4, 5, 6]), 6, SciMLBase.INITIALIZE_DEFAULT, SciMLBase.FINALIZE_DEFAULT, nothing, SciMLBase.LeftRootFind, 10, Bool[1, 1], 1, 2.220446049250313e-15, 0, 1//100)), SciMLBase.StandardODEProblem()), CompositeAlgorithm{Tuple{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5)), OrdinaryDiffEq.CompositeInterpolationData{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbf10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbf30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbf50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbf70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [[0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]], [100.0], [[[0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025]]], [1], true, OrdinaryDiffEq.CompositeCache{Tuple{OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}}, OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}}((OrdinaryDiffEq.Tsit5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}, typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}([0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [3.3991475127270945e-6, 0.00010066184193750245, 4.886936963906232e-6, 1.2918103508683416e-5, -0.0001140006732921326, 0.00012527160962877022, -0.00014040476778800416, 7.267801528547351e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [3.3991475127270945e-6, 0.00010066184193750245, 4.886936963906232e-6, 1.2918103508683416e-5, -0.0001140006732921326, 0.00012527160962877022, -0.00014040476778800416, 7.267801528547351e-6, -0.0, -0.0 … -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Tsit5ConstantCache{Float64, Float64}(0.161, 0.327, 0.9, 0.9800255409045097, 1.0, 1.0, 0.161, -0.008480655492356989, 0.335480655492357, 2.8971530571054935, -6.359448489975075, 4.3622954328695815, 5.325864828439257, -11.748883564062828, 7.4955393428898365, -0.09249506636175525, 5.86145544294642, -12.92096931784711, 8.159367898576159, -0.071584973281401, -0.028269050394068383, 0.09646076681806523, 0.01, 0.4798896504144996, 1.379008574103742, -3.290069515436081, 2.324710524099774, -0.001780011052225777, -0.0008164344596567469, 0.007880878010261995, -0.1447110071732629, 0.5823571654525552, -0.45808210592918697, 0.015151515151515152, 1.0, -2.763706197274826, 2.9132554618219126, -1.0530884977290216, 0.13169999999999998, -0.2234, 0.1017, 3.9302962368947516, -5.941033872131505, 2.490627285651253, -12.411077166933676, 30.33818863028232, -16.548102889244902, 37.50931341651104, -88.1789048947664, 47.37952196281928, -27.896526289197286, 65.09189467479366, -34.87065786149661, 1.5, -4.0, 2.5), OrdinaryDiffEq.trivial_limiter!, OrdinaryDiffEq.trivial_limiter!, static(false)), OrdinaryDiffEq.Rosenbrock23Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Matrix{Float64}, Matrix{Float64}, OrdinaryDiffEq.Rosenbrock23Tableau{Float64}, SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}, SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}, LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}, FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}, FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}, Float64, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Nothing}([0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779417677e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779531905e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], OrdinaryDiffEq.Rosenbrock23Tableau{Float64}(7.414213562373095, 0.2928932188134525), SciMLBase.TimeGradientWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Vector{Float64}, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbf10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbf30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbf50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbf70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), [0.0004491987550009084, 0.005717135057401613, 0.0001765767793412447, 0.001709369944255517, 0.00031386125856429906, 0.0009687190258563616, 0.9901764621498523, 0.0004886936963906232, 0.209, 0.2 … 0.005, 0.008, 0.015, 0.08, 0.02, 0.02, 0.02, 0.01, 0.025, 0.025], [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), SciMLBase.UJacobianWrapper{ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}, Float64, Vector{Float64}}(ODEFunction{true, SciMLBase.AutoSpecialize, FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Vector{Symbol}, ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}, Nothing, ODESystem}(FunctionWrappersWrappers.FunctionWrappersWrapper{Tuple{FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}, FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}}, false}((FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{Float64}, Vector{Float64}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa390, Ptr{Nothing} @0x00007fa9673cbf10, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Float64}}(Ptr{Nothing} @0x00007faad63fa5b0, Ptr{Nothing} @0x00007fa9673cbf30, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63fa7d0, Ptr{Nothing} @0x00007fa9673cbf50, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}), FunctionWrappers.FunctionWrapper{Nothing, Tuple{Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}, Vector{Float64}, ForwardDiff.Dual{ForwardDiff.Tag{DiffEqBase.OrdinaryDiffEqTag, Float64}, Float64, 1}}}(Ptr{Nothing} @0x00007faad63faa00, Ptr{Nothing} @0x00007fa9673cbf70, Base.RefValue{SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}}(SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}(ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
(SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, Val{1}(), Val{(22,)}(), (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21))), (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20))), (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8)), (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17))), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14))), (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20))), -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0, -0.0)
end
end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
begin
#= /home/runner/.julia/packages/Symbolics/UrqtQ/src/build_function.jl:520 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds begin
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
ˍ₋out[1] = (+)((+)((+)((*)((+)((+)((+)((/)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 10))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 16))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 21)))
ˍ₋out[2] = (+)((+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 18)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 17))), (*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 16))), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 19))), (*)((getindex)(ˍ₋arg1, 8), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[3] = (*)(ˍ₋arg2[3], (getindex)(ˍ₋arg1, 8))
ˍ₋out[4] = (+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 10)), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 17)))
ˍ₋out[5] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 1), (getindex)(ˍ₋arg1, 21)), (*)((*)(-1//1, ˍ₋arg2[4]), (getindex)(ˍ₋arg1, 5))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 18))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 14)))
ˍ₋out[6] = (+)((+)((+)((*)(ˍ₋arg2[4], (getindex)(ˍ₋arg1, 5)), (*)((getindex)(ˍ₋arg1, 4), (getindex)(ˍ₋arg1, 22))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 19)))
ˍ₋out[7] = (*)((+)((+)((+)((/)((*)((*)(-1, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 9)), ˍ₋arg2[15]), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 12)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 11)), ˍ₋arg2[15])), (/)((*)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 13)), ˍ₋arg2[15])), (getindex)(ˍ₋arg1, 7))
ˍ₋out[8] = (+)((+)((+)((*)((getindex)(ˍ₋arg1, 5), (getindex)(ˍ₋arg1, 14)), (*)((getindex)(ˍ₋arg1, 6), (getindex)(ˍ₋arg1, 15))), (*)((*)(-1//1, ˍ₋arg2[3]), (getindex)(ˍ₋arg1, 8))), (*)((*)(-1//1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 20)))
ˍ₋out[9] = -0.0
ˍ₋out[10] = -0.0
ˍ₋out[11] = -0.0
ˍ₋out[12] = -0.0
ˍ₋out[13] = -0.0
ˍ₋out[14] = -0.0
ˍ₋out[15] = -0.0
ˍ₋out[16] = -0.0
ˍ₋out[17] = -0.0
ˍ₋out[18] = -0.0
ˍ₋out[19] = -0.0
ˍ₋out[20] = -0.0
ˍ₋out[21] = -0.0
ˍ₋out[22] = -0.0
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
nothing
end
end
end
end)))), SciMLBase.Void{ModelingToolkit.var"#f#508"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x131a0ad7, 0xf5c9514b, 0x455f8a4a, 0xbaff3231, 0x91716037)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x8a719f3f, 0x81f063c3, 0x976f2b71, 0x4ffd12b7, 0x365cfbbe)}}}))), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("Infected(t)"), Symbol("Healed(t)"), Symbol("Extinct(t)"), Symbol("Diagnosed(t)"), Symbol("Ailing(t)"), Symbol("Recognized(t)"), Symbol("Susceptible(t)"), Symbol("Threatened(t)"), Symbol("alpha(t)"), Symbol("epsilon(t)") … Symbol("delta(t)"), Symbol("mu(t)"), Symbol("nu(t)"), Symbol("lambda(t)"), Symbol("rho(t)"), Symbol("kappa(t)"), Symbol("xi(t)"), Symbol("sigma(t)"), Symbol("zeta(t)"), Symbol("eta(t)")], :t, [:ModelValue_21, :epsilon_modifier, :tau, :theta, :ModelValue_19, :ModelValue_20, :Event_trigger_Fig4b, :Event_trigger_Fig3d, :ModelValue_16, :Event_trigger_Fig3b, :alpha_modifier, :Event_trigger_Fig4d, :ModelValue_17, :ModelValue_18, :Italy], ModelingToolkit.var"#521#generated_observed#516"{Bool, ODESystem, Dict{Any, Any}}(false, Core.Box(RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end)), ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing), Dict{Any, Any}(Healed(t) + Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb1fd5b70, 0xa43071cf, 0x1fab257f, 0xbf4a8738, 0x882aa889)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)(var"Healed(t)", var"Infected(t)")
end
end
end), Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x2fe537e5, 0x0cb831d0, 0x62d35645, 0xeba4e982, 0xc9e75e00)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)")
end
end
end), Infected(t) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa8858ce5, 0x53c604f3, 0xfcad328e, 0xeca8b209, 0x02dba5a9)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
var"Infected(t)"
end
end
end), (Ailing(t) + Diagnosed(t) + Infected(t) + Recognized(t) + Threatened(t)) / (Ailing(t) + Diagnosed(t) + Extinct(t) + Healed(t) + Infected(t) + Recognized(t) + Susceptible(t) + Threatened(t) + alpha(t) + beta(t) + delta(t) + epsilon(t) + eta(t) + gamma(t) + kappa(t) + lambda(t) + mu(t) + nu(t) + rho(t) + sigma(t) + xi(t) + zeta(t)) => RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(Symbol("##arg#5734386289953452151"), Symbol("##arg#16782508886270998003"), :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xf51badca, 0x63878843, 0xd5376202, 0x2000c5c9, 0x2897e6d6)}(quote
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
#= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
begin
var"Infected(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[1])
var"Healed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[2])
var"Extinct(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[3])
var"Diagnosed(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[4])
var"Ailing(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[5])
var"Recognized(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[6])
var"Susceptible(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[7])
var"Threatened(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[8])
var"alpha(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[9])
var"epsilon(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[10])
var"gamma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[11])
var"beta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[12])
var"delta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[13])
var"mu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[14])
var"nu(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[15])
var"lambda(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[16])
var"rho(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[17])
var"kappa(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[18])
var"xi(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[19])
var"sigma(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[20])
var"zeta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[21])
var"eta(t)" = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#5734386289953452151"[22])
ModelValue_21 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[1])
epsilon_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[2])
tau = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[3])
theta = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[4])
ModelValue_19 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[5])
ModelValue_20 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[6])
Event_trigger_Fig4b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[7])
Event_trigger_Fig3d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[8])
ModelValue_16 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[9])
Event_trigger_Fig3b = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[10])
alpha_modifier = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[11])
Event_trigger_Fig4d = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[12])
ModelValue_17 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[13])
ModelValue_18 = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[14])
Italy = #= /home/runner/.julia/packages/SymbolicUtils/qulQp/src/code.jl:210 =# @inbounds(var"##arg#16782508886270998003"[15])
begin
(/)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Threatened(t)"), (+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)((+)(var"Ailing(t)", var"Diagnosed(t)"), var"Extinct(t)"), var"Healed(t)"), var"Infected(t)"), var"Recognized(t)"), var"Susceptible(t)"), var"Threatened(t)"), var"alpha(t)"), var"beta(t)"), var"delta(t)"), var"epsilon(t)"), var"eta(t)"), var"gamma(t)"), var"kappa(t)"), var"lambda(t)"), var"mu(t)"), var"nu(t)"), var"rho(t)"), var"sigma(t)"), var"xi(t)"), var"zeta(t)"))
end
end
end))), nothing, ODESystem(0x0000000000000007, Equation[Differential(t)(Infected(t)) ~ ((Infected(t)*alpha(t)) / Italy + (Diagnosed(t)*beta(t)) / Italy + (Ailing(t)*gamma(t)) / Italy + (Recognized(t)*delta(t)) / Italy)*Susceptible(t) - Infected(t)*epsilon(t) - Infected(t)*lambda(t) - Infected(t)*zeta(t), Differential(t)(Healed(t)) ~ Ailing(t)*kappa(t) + Diagnosed(t)*rho(t) + Infected(t)*lambda(t) + Recognized(t)*xi(t) + Threatened(t)*sigma(t), Differential(t)(Extinct(t)) ~ tau*Threatened(t), Differential(t)(Diagnosed(t)) ~ Infected(t)*epsilon(t) - Diagnosed(t)*eta(t) - Diagnosed(t)*rho(t), Differential(t)(Ailing(t)) ~ Infected(t)*zeta(t) - theta*Ailing(t) - Ailing(t)*kappa(t) - Ailing(t)*mu(t), Differential(t)(Recognized(t)) ~ theta*Ailing(t) + Diagnosed(t)*eta(t) - Recognized(t)*nu(t) - Recognized(t)*xi(t), Differential(t)(Susceptible(t)) ~ ((-Infected(t)*alpha(t)) / Italy + (-Diagnosed(t)*beta(t)) / Italy + (-Ailing(t)*gamma(t)) / Italy + (-Recognized(t)*delta(t)) / Italy)*Susceptible(t), Differential(t)(Threatened(t)) ~ Ailing(t)*mu(t) + Recognized(t)*nu(t) - tau*Threatened(t) - Threatened(t)*sigma(t), Differential(t)(alpha(t)) ~ -0.0, Differential(t)(epsilon(t)) ~ -0.0 … Differential(t)(delta(t)) ~ -0.0, Differential(t)(mu(t)) ~ -0.0, Differential(t)(nu(t)) ~ -0.0, Differential(t)(lambda(t)) ~ -0.0, Differential(t)(rho(t)) ~ -0.0, Differential(t)(kappa(t)) ~ -0.0, Differential(t)(xi(t)) ~ -0.0, Differential(t)(sigma(t)) ~ -0.0, Differential(t)(zeta(t)) ~ -0.0, Differential(t)(eta(t)) ~ -0.0], t, Any[Infected(t), Healed(t), Extinct(t), Diagnosed(t), Ailing(t), Recognized(t), Susceptible(t), Threatened(t), alpha(t), epsilon(t) … delta(t), mu(t), nu(t), lambda(t), rho(t), kappa(t), xi(t), sigma(t), zeta(t), eta(t)], Sym{Real, Base.ImmutableDict{DataType, Any}}[ModelValue_21, epsilon_modifier, tau, theta, ModelValue_19, ModelValue_20, Event_trigger_Fig4b, Event_trigger_Fig3d, ModelValue_16, Event_trigger_Fig3b, alpha_modifier, Event_trigger_Fig4d, ModelValue_17, ModelValue_18, Italy], nothing, Dict{Any, Any}(:Infected => Infected(t), :Threatened => Threatened(t), :alpha => alpha(t), :gamma => gamma(t), :rho => rho(t), :epsilon_modifier => epsilon_modifier, :delta => delta(t), :Ailing => Ailing(t), :lambda => lambda(t), :ModelValue_21 => ModelValue_21…), Any[], Equation[], Base.RefValue{Vector{Num}}(Num[]), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Base.RefValue{Matrix{Num}}(Matrix{Num}(undef, 0, 0)), Symbol("##SBML#596"), ODESystem[], Dict{Any, Any}(delta(t) => 0.011, xi(t) => 0.017, Diagnosed(t) => 3.33333333e-7, Event_trigger_Fig3b => 0.0, zeta(t) => 0.125, eta(t) => 0.125, Healed(t) => 0.0, Infected(t) => 3.33333333e-6, nu(t) => 0.027, Extinct(t) => 0.0…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 50.0], Equation[alpha(t) ~ 0.252ModelValue_16 + 0.105ModelValue_17 + 0.209ModelValue_21 + 0.42ModelValue_19, epsilon(t) ~ 0.4ModelValue_18 + 0.2ModelValue_20 + 0.6ModelValue_19]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 12.0], Equation[epsilon(t) ~ 0.143]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 28.0], Equation[alpha(t) ~ 0.21, gamma(t) ~ 0.11]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 22.0], Equation[alpha(t) ~ 0.36, beta(t) ~ 0.005, gamma(t) ~ 0.2, delta(t) ~ 0.005, mu(t) ~ 0.008, nu(t) ~ 0.015, lambda(t) ~ 0.08, rho(t) ~ 0.017, kappa(t) ~ 0.017, xi(t) ~ 0.017, sigma(t) ~ 0.017, zeta(t) ~ 0.034, eta(t) ~ 0.034]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 38.0], Equation[rho(t) ~ 0.02, xi(t) ~ 0.02, sigma(t) ~ 0.01, zeta(t) ~ 0.025, epsilon(t) ~ 0.2, eta(t) ~ 0.025, kappa(t) ~ 0.02]), ModelingToolkit.SymbolicContinuousCallback(Equation[t ~ 4.0], Equation[alpha(t) ~ 0.422, beta(t) ~ 0.0057, gamma(t) ~ 0.285, delta(t) ~ 0.0057])], ModelingToolkit.SymbolicDiscreteCallback[], nothing, TearingState of ODESystem, ModelingToolkit.Substitutions(Equation[], Vector{Int64}[], nothing), false, nothing, nothing)), 100.0, [1.0, 1.0, 0.01, 0.371, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0]), [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], LinearSolve.LinearCache{Matrix{Float64}, Vector{Float64}, Vector{Float64}, SciMLBase.NullParameters, RFLUFactorization{true, true}, Tuple{LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}, Vector{Int64}}, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}, LinearAlgebra.Diagonal{Float64, Vector{Float64}}, Float64, Nothing}([6.9353330106956e-310 6.9353330039423e-310 … 6.9353330131157e-310 6.9353330072561e-310; 6.9353329992281e-310 6.93533300866873e-310 … 6.93533300503556e-310 6.93533301251137e-310; … ; 6.93533299875184e-310 6.935332998357e-310 … 6.93533300552844e-310 6.779531905e-315; 6.93533300141387e-310 6.9353329990127e-310 … 6.9353330029364e-310 5.0e-324], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], SciMLBase.NullParameters(), RFLUFactorization{true, true}(), (LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{Int64}}(Matrix{Float64}(undef, 0, 0), Int64[], 0), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0 … 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]), true, LinearSolve.InvPreconditioner{LinearAlgebra.Diagonal{Float64, Vector{Float64}}}([0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0]), [0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.0 … 0.0 0.0], 1.4901161193847656e-8, 1.4901161193847656e-8, 22, false, LinearSolve.OperatorAssumptions{Nothing}()), FiniteDiff.JacobianCache{Vector{Float64}, Vector{Float64}, Vector{Float64}, Vector{Float64}, UnitRange{Int64}, Nothing, Val{:forward}(), Float64}([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 1:22, nothing), FiniteDiff.GradientCache{Nothing, Vector{Float64}, Vector{Float64}, Float64, Val{:forward}(), Float64, Val{true}()}(nothing, [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 … 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 100.0), 0.001, Rosenbrock23{1, false, RFLUFactorization{true, true}, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(RFLUFactorization{true, true}(), OrdinaryDiffEq.DEFAULT_PRECS), nothing)), OrdinaryDiffEq.AutoSwitchCache{Tsit5{typeof(OrdinaryDiffEq.trivial_limiter!), typeof(OrdinaryDiffEq.trivial_limiter!), Static.False}, Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}, Rational{Int64}, Int64}(0, 0, Tsit5(stage_limiter! = trivial_limiter!, step_limiter! = trivial_limiter!, thread = static(false)), Rosenbrock23{0, false, Nothing, typeof(OrdinaryDiffEq.DEFAULT_PRECS), Val{:forward}, true, nothing}(nothing, OrdinaryDiffEq.DEFAULT_PRECS), false, 10, 3, 9//10, 9//10, 2, false, 5), 1)), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 0
Number of rejected steps: 0, [1], SciMLBase.ReturnCode.Success)), :MAXTIME_REACHED)